From e5d9afd7e0bc94f040132277c24361a2de6f3b5b Mon Sep 17 00:00:00 2001 From: seth Date: Sun, 27 Oct 2024 02:35:32 -0400 Subject: seth: cleanup basePrograms mess --- users/seth/tweaks/catppuccin.nix | 29 +++++++++++++++++++++++++++++ users/seth/tweaks/default.nix | 1 + 2 files changed, 30 insertions(+) create mode 100644 users/seth/tweaks/catppuccin.nix (limited to 'users/seth/tweaks') diff --git a/users/seth/tweaks/catppuccin.nix b/users/seth/tweaks/catppuccin.nix new file mode 100644 index 0000000..2b84ba3 --- /dev/null +++ b/users/seth/tweaks/catppuccin.nix @@ -0,0 +1,29 @@ +{ + config, + lib, + inputs, + ... +}: +let + cfg = config.seth.tweaks.catppuccin; +in +{ + options.seth.tweaks.catppuccin = { + enable = lib.mkEnableOption "catppuccin themeing" // { + default = config.seth.enable; + defaultText = "config.seth.enable"; + }; + }; + + imports = [ + inputs.catppuccin.homeManagerModules.catppuccin + ]; + + config = lib.mkIf cfg.enable { + catppuccin = { + enable = true; + accent = "mavue"; + flavor = "mocha"; + }; + }; +} diff --git a/users/seth/tweaks/default.nix b/users/seth/tweaks/default.nix index cb8f15c..6d4360e 100644 --- a/users/seth/tweaks/default.nix +++ b/users/seth/tweaks/default.nix @@ -1,5 +1,6 @@ { imports = [ ./adwaita-ize.nix + ./catppuccin.nix ]; } -- cgit v1.2.3