add gui option

This commit is contained in:
jopejoe1 2024-04-19 18:12:23 +02:00
parent 24af8c82c1
commit bdd527ddad
8 changed files with 14 additions and 11 deletions

View file

@ -21,7 +21,8 @@ in {
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFZDUoC+1lNR2JTY1Q+vhXpuLmKMdVl2OMFLVbQ3cGkw jopejoe1@kuraokami"
];
packages = with pkgs;
[
[]
++ lib.optionals config.jopejoe1.gui.enable [
libsForQt5.kate
libsForQt5.ark
element-desktop
@ -32,8 +33,6 @@ in {
catppuccin-kde
#catppuccin-gtk
localPkgs.tela-icon-theme-git
]
++ lib.optionals (config.system == "x86_64-linux") [
discord
lutris
bottles
@ -60,8 +59,9 @@ in {
};
nushell.enable = true;
git.enable = true;
gui.enable = config.jopejoe1.gui.enable;
direnv.enable = true;
firefox.enable = true;
firefox.enable = config.jopejoe1.gui.enable;
};
};
};

View file

@ -29,6 +29,7 @@ in {
};
git.enable = true;
direnv.enable = true;
gui.enable = config.jopejoe1.gui.enable;
};
};
};