Skip to content

Commit

Permalink
chore: Simplify htop module
Browse files Browse the repository at this point in the history
  • Loading branch information
donovanglover committed Apr 3, 2024
1 parent 2048bc6 commit 9ccdaca
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions home/htop.nix
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
{ pkgs, ... }:

let
inherit (pkgs) htop-vim;
in
{
programs.htop = {
enable = true;
package = pkgs.htop-vim;
package = 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;
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;
};
};
}

0 comments on commit 9ccdaca

Please sign in to comment.