aboutsummaryrefslogtreecommitdiff
path: root/gui
diff options
context:
space:
mode:
Diffstat (limited to 'gui')
-rw-r--r--gui/default.nix1
-rw-r--r--gui/htop.nix13
2 files changed, 14 insertions, 0 deletions
diff --git a/gui/default.nix b/gui/default.nix
index f7ffc7d..9d3593e 100644
--- a/gui/default.nix
+++ b/gui/default.nix
@@ -10,6 +10,7 @@ in {
./emacs.nix
./email.nix
./zathura.nix
+ ./htop.nix
./pass.nix
# applications grouped by purpose
diff --git a/gui/htop.nix b/gui/htop.nix
new file mode 100644
index 0000000..2cb1602
--- /dev/null
+++ b/gui/htop.nix
@@ -0,0 +1,13 @@
+{ config, pkgs, ... }:
+
+{
+ programs.htop = {
+ enable = true;
+
+ treeView = true;
+ showProgramPath = false;
+ highlightBaseName = true;
+ hideThreads = true;
+ hideUserlandThreads = true;
+ };
+}