aboutsummaryrefslogtreecommitdiff
path: root/gui/htop.nix
blob: 0cf1cbfd2739fc11948e361679a4a0a046163e1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ config, pkgs, ... }:

{
  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" ];
  };
}