summaryrefslogtreecommitdiff
path: root/users/seth/tweaks
diff options
context:
space:
mode:
authorseth <[email protected]>2024-10-27 02:35:32 -0400
committerseth <[email protected]>2024-10-27 02:35:32 -0400
commite5d9afd7e0bc94f040132277c24361a2de6f3b5b (patch)
tree39bbedd0477fafd7f09a0de90ab0bc8accd6a143 /users/seth/tweaks
parent87e5274c0ad37baf3130e090f6645935e9c17e11 (diff)
seth: cleanup basePrograms mess
Diffstat (limited to 'users/seth/tweaks')
-rw-r--r--users/seth/tweaks/catppuccin.nix29
-rw-r--r--users/seth/tweaks/default.nix1
2 files changed, 30 insertions, 0 deletions
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
];
}