13 lines
255 B
Nix
Executable file
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;
|
|
};
|
|
};
|
|
}
|