My Nix Configuration
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

[homeModules] disable shells on non-graphical systems

dish e9ae6ad7 339aac48

+4 -2
+2 -1
homeModules/programs/caelestia/default.nix
··· 5 5 }: 6 6 let 7 7 cfg = config.py.profiles.desktop.caelestia; 8 + en = config.py.profiles.desktop.enable; 8 9 in 9 10 { 10 - config = lib.mkIf cfg { 11 + config = lib.mkIf (cfg && en) { 11 12 programs.caelestia = { 12 13 enable = true; 13 14 settings = builtins.fromJSON (builtins.readFile ./caelestia-shell.json);
+2 -1
homeModules/programs/dms/default.nix
··· 5 5 }: 6 6 let 7 7 cfg = config.py.profiles.desktop.dms; 8 + en = config.py.profiles.desktop.enable; 8 9 in 9 10 { 10 - config = lib.mkIf cfg { 11 + config = lib.mkIf (cfg && en) { 11 12 programs.dankMaterialShell = { 12 13 enable = true; 13 14 enableNightMode = false;