43 lines
707 B
Nix
43 lines
707 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
inherit (lib) mkEnableOption mkIf mkOption types;
|
|
cfg = config.horseman.apps.visual;
|
|
homeCfg = config.horseman;
|
|
in {
|
|
options = {
|
|
horseman.apps.visual = {
|
|
enable = mkEnableOption "Apps that run in a visual window";
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
horseman.apps.visual = {
|
|
firefox.enable = true;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
albert
|
|
bitwarden
|
|
discord-ptb
|
|
gnome-calculator
|
|
inkscape
|
|
keepassxc
|
|
kitty
|
|
krita
|
|
libreoffice
|
|
mullvad-vpn
|
|
parsec-bin
|
|
qbittorrent
|
|
reaper
|
|
solaar
|
|
spotify
|
|
vlc
|
|
];
|
|
};
|
|
}
|