feat: Remove bottom

Rose Pine does not have an official bottom port.
This commit is contained in:
punkfairie 2024-10-19 17:30:09 -07:00
parent 035cd48f6b
commit 3a829096c2
Signed by: punkfairie
GPG key ID: 01823C057725C266
2 changed files with 0 additions and 16 deletions

View file

@ -1,7 +1,6 @@
[
./alacritty.nix
./bat.nix
./bottom.nix
./btop.nix
./cava.nix
./cursor.nix

View file

@ -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";
};
};
}