feat: add btop for macOS, remove verible from macOS

This commit is contained in:
Ryan Yin
2023-09-07 16:35:59 +08:00
parent c645d31dd3
commit 02b6079198
5 changed files with 82 additions and 76 deletions

15
home/base/server/btop.nix Normal file
View File

@@ -0,0 +1,15 @@
{ catppuccin-btop, ... }:
{
# https://github.com/catppuccin/btop/blob/main/themes/catppuccin_mocha.theme
home.file.".config/btop/themes".source = "${catppuccin-btop}/themes";
# replacement of htop/nmon
programs.btop = {
enable = true;
settings = {
color_theme = "catppuccin_mocha";
theme_background = false; # make btop transparent
};
};
}

View File

@@ -6,6 +6,7 @@
./bash.nix
./bat.nix
./btop.nix
./core.nix
./git.nix
./starship.nix