mirror of
https://github.com/ItsDrike/nixdots
synced 2024-12-26 03:34:35 +00:00
Add btop
This commit is contained in:
parent
3eda0dec2d
commit
fbbb22a2d3
11
home/programs/terminal/tools/btop.nix
Normal file
11
home/programs/terminal/tools/btop.nix
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
programs.btop = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
update_ms = 2000; # recommended >=2s for good graph sample rate
|
||||||
|
proc_sorting = "memory";
|
||||||
|
proc_tree = true; # show processes in tree view (showing parent/child relationships)
|
||||||
|
base_10_sizes = false; # us KB instead of KiB
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -8,5 +8,6 @@ _: {
|
||||||
./zoxide.nix
|
./zoxide.nix
|
||||||
./tealdeer.nix
|
./tealdeer.nix
|
||||||
./hyfetch.nix
|
./hyfetch.nix
|
||||||
|
./btop.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue