home: init bottom config

This commit is contained in:
notohh 2024-04-19 17:57:49 -04:00
parent dac74a6a14
commit fb0b5af6e5
Signed by: notohh
GPG key ID: BD47506D475EE86D
2 changed files with 18 additions and 1 deletions

View file

@ -10,6 +10,7 @@
./programs/terminal/yazi
./programs/terminal/atuin.nix
./programs/terminal/bat.nix
./programs/terminal/bottom.nix
./programs/terminal/starship.nix
./programs/terminal/zoxide.nix
./programs/direnv.nix
@ -26,7 +27,6 @@
eva
fd
du-dust
bottom
gnupg
ripgrep
lazydocker

View file

@ -0,0 +1,17 @@
_: {
programs.bottom = {
enable = true;
settings = {
flags = {
current_usage = true;
group_processes = true;
case_sensitive = false;
mem_as_value = true;
enable_gpu = true;
disable_advanced_kill = true;
unnormalized_cpu = true;
temperature_type = "c";
};
};
};
}