nix-stuff/roles/common/programs/htop.nix
2023-06-01 13:07:12 +02:00

15 lines
240 B
Nix
Executable file

{ config, ... }:
{
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;
};
};
}