nixos-configuration/home/htop.nix

14 lines
258 B
Nix
Raw Normal View History

2022-02-15 15:44:40 +01:00
{ ... }: {
programs.htop = {
enable = true;
settings = {
hide_kernel_threads = true;
hide_threads = true;
hide_userland_threads = true;
show_program_path = false;
tree_view = true;
vim_mode = true;
};
};
}