diff options
| author | Seth Flynn <[email protected]> | 2025-01-30 08:27:42 -0500 |
|---|---|---|
| committer | Seth Flynn <[email protected]> | 2025-01-30 08:58:24 -0500 |
| commit | ea7a9cf19129b9d72982ca2cb280c7fd1c4bdd77 (patch) | |
| tree | 81d3a543be9421a5e27b5b3c60abb67ad838e9c4 /modules/nixos/tweaks/catppuccin.nix | |
| parent | 1fa4e291a8347af54a2c4bf5d07bdca0dac2b36f (diff) | |
nixos/catppuccin: init
Diffstat (limited to 'modules/nixos/tweaks/catppuccin.nix')
| -rw-r--r-- | modules/nixos/tweaks/catppuccin.nix | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/modules/nixos/tweaks/catppuccin.nix b/modules/nixos/tweaks/catppuccin.nix new file mode 100644 index 0000000..439dfb4 --- /dev/null +++ b/modules/nixos/tweaks/catppuccin.nix @@ -0,0 +1,29 @@ +{ + config, + lib, + inputs, + ... +}: +let + cfg = config.tweaks.catppuccin; +in +{ + options.tweaks.catppuccin = { + enable = lib.mkEnableOption "Catppuccin themeing"; + }; + + imports = [ + inputs.catppuccin.nixosModules.catppuccin + ]; + + config = lib.mkIf cfg.enable { + catppuccin = { + enable = true; + accent = "mauve"; + flavor = "mocha"; + + # Don't use modules with IFD by default + tty.enable = false; + }; + }; +} |
