From 3a829096c2e2089e62279ed8a1718433164f57cd Mon Sep 17 00:00:00 2001 From: punkfairie Date: Sat, 19 Oct 2024 17:30:09 -0700 Subject: [PATCH] feat: Remove bottom Rose Pine does not have an official bottom port. --- modules/home-manager/all-modules.nix | 1 - modules/home-manager/bottom.nix | 15 --------------- 2 files changed, 16 deletions(-) delete mode 100644 modules/home-manager/bottom.nix 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"; - }; - }; -}