nix-config/home/htop.nix
Donovan Glover bd6fabad67
feat: Move starship/htop back to home
It's actually easier to maintain when programs with non-trivial configs
have their own module.
2024-04-06 18:46:27 -04:00

23 lines
375 B
Nix

{ 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;
};
};
}