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:
parent
f9a851cda2
commit
ebd96d805e
@ -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;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user