mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 07:29:43 +00:00
12 lines
317 B
Nix
12 lines
317 B
Nix
|
{
|
||
|
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
|
||
|
};
|
||
|
};
|
||
|
}
|