My NixOS and Home Manager configurations

remove catpuccin from default modules

quasigod.xyz d3b78b6b 67972842

verified
+15 -15
+1
hosts/hades/default.nix
··· 12 12 zsa-kb 13 13 syncthing-client 14 14 plover 15 + catppuccin 15 16 ]; 16 17 17 18 primaryDisplay = config.unify.hosts.nixos.hades.displays.DP-3;
+1
hosts/zagreus/default.nix
··· 9 9 plymouth 10 10 secure-boot 11 11 syncthing-client 12 + catppuccin 12 13 ]; 13 14 14 15 primaryDisplay = config.unify.hosts.nixos.zagreus.displays.eDP-1;
+13 -15
modules/themes/catppuccin/default.nix
··· 6 6 accent = "pink"; 7 7 in 8 8 { 9 - unify = { 9 + unify.modules.catppuccin = { 10 10 nixos = { 11 11 imports = [ inputs.catppuccin.nixosModules.default ]; 12 12 catppuccin = { ··· 15 15 }; 16 16 }; 17 17 18 - home = { 19 - imports = [ 20 - inputs.catppuccin.homeModules.catppuccin 21 - inputs.nix-colors.homeManagerModule 22 - ]; 23 - catppuccin = { 24 - enable = true; 25 - inherit flavor accent; 26 - wezterm.apply = true; 27 - }; 28 - colorScheme = inputs.nix-colors.colorSchemes.catppuccin-macchiato; 29 - }; 30 - 31 - modules.workstation.home = 18 + home = 32 19 { pkgs, ... }: 33 20 { 21 + imports = [ 22 + inputs.catppuccin.homeModules.catppuccin 23 + inputs.nix-colors.homeManagerModule 24 + ]; 25 + catppuccin = { 26 + enable = true; 27 + inherit flavor accent; 28 + wezterm.apply = true; 29 + }; 30 + colorScheme = inputs.nix-colors.colorSchemes.catppuccin-macchiato; 31 + 34 32 qt = { 35 33 style.name = lib.mkForce "kvantum"; 36 34 platformTheme.name = lib.mkForce "kvantum";