nix-stuff/roles/common/programs/htop.nix
2024-03-20 13:03:05 +01:00

13 lines
255 B
Nix
Executable file

{...}: {
programs.htop = {
enable = true;
settings = {
tree_view = 1;
highlight_base_name = 1;
show_program_path = 0;
show_cpu_frequency = 1;
show_cpu_temperature = 1;
hide_userland_threads = 1;
};
};
}