My Nix Configuration
1{ 2 config, 3 lib, 4 ... 5}: 6let 7 cfg = config.py.profiles.desktop.dms; 8 en = config.py.profiles.desktop.enable; 9in 10{ 11 config = lib.mkIf (cfg && en) { 12 programs.dankMaterialShell = { 13 enable = true; 14 enableDynamicTheming = false; 15 enableAudioWavelength = false; 16 enableCalendarEvents = false; 17 enableSystemSound = false; 18 }; 19 }; 20}