nix-config/modules/apps/visual.nix
2025-05-12 22:14:04 +02:00

42 lines
692 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; [
bitwarden
discord-ptb
gnome-calculator
inkscape
kitty
krita
libreoffice
mullvad-vpn
zathura
parsec-bin
qbittorrent
reaper
solaar
spotify
vlc
];
};
}