From 33ae55904b0054a5c8dea064ed6114df588f5e17 Mon Sep 17 00:00:00 2001 From: Seth Flynn Date: Thu, 13 Feb 2025 18:35:24 -0500 Subject: nixos/catppuccin: make it a mixin --- modules/nixos/tweaks/catppuccin.nix | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 modules/nixos/tweaks/catppuccin.nix (limited to 'modules/nixos/tweaks/catppuccin.nix') 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; - }; - }; -} -- cgit v1.2.3