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

{
  programs.htop = {
    enable = true;

    treeView = true;
    showProgramPath = false;
    highlightBaseName = true;
    hideThreads = true;
    hideUserlandThreads = true;
  };
}