All my system configs and packages in one repo
1
fork

Configure Feed

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

roles(catppuccin): use global enable

+7 -19
+7 -19
roles/catppuccin/default.nix
··· 27 27 }; 28 28 29 29 config = mkIf enable { 30 - catppuccin = {inherit flavour;}; 30 + catppuccin = { 31 + inherit flavour; 32 + enable = true; 33 + }; 31 34 hm = { 32 - catppuccin = {inherit accent flavour;}; 33 - 34 35 imports = [catppuccin.homeManagerModules.catppuccin]; 35 36 36 - i18n.inputMethod.fcitx5.catppuccin.enable = true; 37 - 38 - programs = { 39 - bat.catppuccin.enable = mkDefault true; 40 - fish.catppuccin.enable = mkDefault true; 41 - kitty.catppuccin.enable = mkDefault true; 42 - 43 - fuzzel.settings.colors = { 44 - background = "11111bff"; 45 - text = "cdd6f4ff"; 46 - match = "a6e3a1ff"; 47 - selection = "f5e0dcff"; 48 - selection-text = "1e1e2eff"; 49 - selection-match = "1f7f18ff"; 50 - border = "eba0acee"; 51 - }; 37 + catppuccin = { 38 + inherit accent flavour; 39 + enable = true; 52 40 }; 53 41 }; 54 42 };