summaryrefslogtreecommitdiff
path: root/modules/nixos/tweaks
diff options
context:
space:
mode:
authorSeth Flynn <[email protected]>2025-02-13 18:35:24 -0500
committerSeth Flynn <[email protected]>2025-02-13 22:09:11 -0500
commit33ae55904b0054a5c8dea064ed6114df588f5e17 (patch)
tree2faf73fb69e2b13a6955521d2bcc310bc60da040 /modules/nixos/tweaks
parent73d90e2a2d904f99d9199f8d1c94a9fc16c85ce6 (diff)
nixos/catppuccin: make it a mixin
Diffstat (limited to 'modules/nixos/tweaks')
-rw-r--r--modules/nixos/tweaks/catppuccin.nix29
-rw-r--r--modules/nixos/tweaks/default.nix5
2 files changed, 0 insertions, 34 deletions
diff --git a/modules/nixos/tweaks/catppuccin.nix b/modules/nixos/tweaks/catppuccin.nix
deleted file mode 100644
index 439dfb4..0000000
--- a/modules/nixos/tweaks/catppuccin.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- 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;
- };
- };
-}
diff --git a/modules/nixos/tweaks/default.nix b/modules/nixos/tweaks/default.nix
deleted file mode 100644
index fc1193a..0000000
--- a/modules/nixos/tweaks/default.nix
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- imports = [
- ./catppuccin.nix
- ];
-}