diff --git a/modules/home-manager/all-modules.nix b/modules/home-manager/all-modules.nix index 441e8e0..21c8a42 100644 --- a/modules/home-manager/all-modules.nix +++ b/modules/home-manager/all-modules.nix @@ -1,7 +1,6 @@ [ ./alacritty.nix ./bat.nix - ./bottom.nix ./btop.nix ./cava.nix ./cursor.nix diff --git a/modules/home-manager/bottom.nix b/modules/home-manager/bottom.nix deleted file mode 100644 index 69ba2fa..0000000 --- a/modules/home-manager/bottom.nix +++ /dev/null @@ -1,15 +0,0 @@ -{ config, lib, ... }: -let - inherit (config.catppuccin) sources; - cfg = config.programs.bottom.catppuccin; - enable = cfg.enable && config.programs.bottom.enable; -in -{ - options.programs.bottom.catppuccin = lib.ctp.mkCatppuccinOpt { name = "bottom"; }; - - config = lib.mkIf enable { - programs.bottom = { - settings = lib.importTOML "${sources.bottom}/themes/${cfg.flavor}.toml"; - }; - }; -}