feat(shell): add btop

main
mandlm 2024-09-23 09:54:46 +02:00
parent 01a306d364
commit 0408a1f683
Signed by: mandlm
GPG Key ID: 088ED38F036C7AF2
2 changed files with 14 additions and 0 deletions

13
shell/btop.nix Normal file
View File

@ -0,0 +1,13 @@
{ ... }:
{
programs = {
btop = {
enable = true;
settings = {
theme_background = false;
vim_keys = true;
};
};
};
}

View File

@ -12,6 +12,7 @@
imports = [ imports = [
./atuin.nix ./atuin.nix
./bat.nix ./bat.nix
./btop.nix
./carapace.nix ./carapace.nix
./direnv.nix ./direnv.nix
./eza.nix ./eza.nix