diff --git a/modules/home-manager/all-modules.nix b/modules/home-manager/all-modules.nix index 5ebe202..f8dc898 100644 --- a/modules/home-manager/all-modules.nix +++ b/modules/home-manager/all-modules.nix @@ -9,7 +9,6 @@ ./fish.nix ./foot.nix ./fzf.nix - ./glamour.nix ./globals.nix ./gtk.nix ./helix.nix diff --git a/modules/home-manager/glamour.nix b/modules/home-manager/glamour.nix deleted file mode 100644 index 5b9e4d2..0000000 --- a/modules/home-manager/glamour.nix +++ /dev/null @@ -1,15 +0,0 @@ -{ config, lib, ... }: -let - inherit (config.catppuccin) sources; - cfg = config.programs.glamour.catppuccin; - inherit (cfg) enable; -in -{ - options.programs.glamour.catppuccin = lib.ctp.mkCatppuccinOpt { name = "glamour"; }; - - config = { - home.sessionVariables = lib.mkIf enable { - GLAMOUR_STYLE = "${sources.glamour}/themes/catppuccin-${cfg.flavor}.json"; - }; - }; -}