nixdots/home/programs/terminal/tools/btop.nix

14 lines
373 B
Nix
Raw Permalink Normal View History

2024-04-04 23:01:45 +00:00
{
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
2024-04-04 23:58:42 +00:00
clock_format = "%X";
log_level = "WARNING";
2024-04-04 23:01:45 +00:00
};
};
}