nixdots/home/programs/terminal/tools/btop.nix
2024-04-05 01:58:42 +02:00

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";
};
};
}