home: init bottom config
This commit is contained in:
parent
dac74a6a14
commit
fb0b5af6e5
2 changed files with 18 additions and 1 deletions
|
@ -10,6 +10,7 @@
|
||||||
./programs/terminal/yazi
|
./programs/terminal/yazi
|
||||||
./programs/terminal/atuin.nix
|
./programs/terminal/atuin.nix
|
||||||
./programs/terminal/bat.nix
|
./programs/terminal/bat.nix
|
||||||
|
./programs/terminal/bottom.nix
|
||||||
./programs/terminal/starship.nix
|
./programs/terminal/starship.nix
|
||||||
./programs/terminal/zoxide.nix
|
./programs/terminal/zoxide.nix
|
||||||
./programs/direnv.nix
|
./programs/direnv.nix
|
||||||
|
@ -26,7 +27,6 @@
|
||||||
eva
|
eva
|
||||||
fd
|
fd
|
||||||
du-dust
|
du-dust
|
||||||
bottom
|
|
||||||
gnupg
|
gnupg
|
||||||
ripgrep
|
ripgrep
|
||||||
lazydocker
|
lazydocker
|
||||||
|
|
17
home/programs/terminal/bottom.nix
Normal file
17
home/programs/terminal/bottom.nix
Normal 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";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue