mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-08 01:14:01 +01:00
62207c05fa
Also removes redundant comments.
19 lines
325 B
Nix
19 lines
325 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.htop = {
|
|
enable = true;
|
|
package = pkgs."htop-vim";
|
|
|
|
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;
|
|
};
|
|
};
|
|
}
|