aboutsummaryrefslogtreecommitdiff
path: root/programs/htop.nix
diff options
context:
space:
mode:
Diffstat (limited to 'programs/htop.nix')
-rw-r--r--programs/htop.nix17
1 files changed, 16 insertions, 1 deletions
diff --git a/programs/htop.nix b/programs/htop.nix
index a48b70c..fca3487 100644
--- a/programs/htop.nix
+++ b/programs/htop.nix
@@ -6,6 +6,21 @@
6{ 6{
7 programs.htop = { 7 programs.htop = {
8 enable = true; 8 enable = true;
9 settings.color_scheme = 1; # monochrome 9 settings = {
10 color_scheme = 1; # monochrome
11 show_program_path = 0;
12 fields = with config.lib.htop.fields; [
13 PID
14 M_SIZE
15 M_RESIDENT
16 M_SHARE
17 STATE
18 PERCENT_CPU
19 PERCENT_MEM
20 TIME
21 COMM
22 ];
23
24 };
10 }; 25 };
11} 26}