1
0
forked from extern/nix-config

htop: Use better settings for NixOS

Although many people have tried to make more modern top-like programs,
my favorite is still htop *by far*. NixOS includes htop-vim in its
official repositories, which is great, and this change removes the
/nix/store prefixes from all the processes, making htop overall much
easier to read and navigate.
This commit is contained in:
Donovan Glover 2023-06-17 10:48:18 -04:00
parent f9a851cda2
commit ebd96d805e
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -4,6 +4,14 @@
programs.htop = { programs.htop = {
enable = true; enable = true;
package = pkgs."htop-vim"; package = pkgs."htop-vim";
settings = { tree_view = 1; }; settings = {
tree_view = 1;
hide_userland_threads = 1;
highlight_changes = 1;
show_cpu_frequency = 1;
show_cpu_temperature = 1;
show_program_path = 0;
highlight_base_name = 1;
};
}; };
} }