restructure

This commit is contained in:
KoenDR06 2025-09-15 19:19:42 +02:00
parent 836da5123e
commit d0f9c504e3
6 changed files with 10 additions and 12 deletions

View file

@ -1,45 +0,0 @@
{
lib,
config,
pkgs,
...
}: let
inherit (lib) mkEnableOption mkIf;
cfg = config.horseman.apps.visual;
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
blender
gnome-calculator
inkscape
kitty
krita
libreoffice
mullvad-vpn
zathura
parsec-bin
qbittorrent
reaper
signal-desktop
solaar
spotify
vesktop
vlc
];
fonts.packages = with pkgs; [
nerd-fonts.caskaydia-cove
];
};
}