nix-config/home/htop.nix

23 lines
375 B
Nix
Raw Normal View History

{ pkgs, ... }:
let
inherit (pkgs) htop-vim;
in
{
programs.htop = {
enable = true;
package = htop-vim;
settings = {
tree_view = true;
hide_userland_threads = true;
highlight_changes = true;
show_cpu_frequency = true;
show_cpu_temperature = true;
highlight_base_name = true;
show_program_path = false;
};
};
}