config/homes/common/htop.nix

21 lines
375 B
Nix
Raw Permalink Normal View History

2024-09-15 12:56:25 +01:00
{ pkgs, ... }:
{
programs.htop = {
enable = true;
package = pkgs.htop-vim;
settings = {
hide_kernel_threads = 1;
hide_userland_threads = 1;
highlight_base_name = 1;
show_cpu_usage = 1;
show_cpu_frequency = 1;
show_cpu_temperature = 1;
degree_fahrenheit = 0;
enable_mouse = 1;
tree_view = 1;
};
};
}