mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 06:59:41 +00:00
14 lines
373 B
Nix
14 lines
373 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
|
|
clock_format = "%X";
|
|
log_level = "WARNING";
|
|
};
|
|
};
|
|
}
|