diff options
Diffstat (limited to 'gui')
-rw-r--r-- | gui/htop.nix | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/gui/htop.nix b/gui/htop.nix index 0cf1cbf..bb1f2bf 100644 --- a/gui/htop.nix +++ b/gui/htop.nix @@ -4,12 +4,17 @@ programs.htop = { enable = true; - treeView = true; - showProgramPath = false; - highlightBaseName = true; - hideThreads = true; - hideUserlandThreads = true; - meters.left = [ "LeftCPUs4" "Memory" "Swap" ]; - meters.right = [ "RightCPUs4" "Tasks" "LoadAverage" "Uptime" ]; + settings = { + treeView = true; + + showProgramPath = false; + highlightBaseName = true; + + hideThreads = true; + hideUserlandThreads = true; + + left_meter_modes = [ "LeftCPUs4" "Memory" "Swap" ]; + right_meter_modes = [ "RightCPUs4" "Tasks" "LoadAverage" "Uptime" ]; + }; }; } |