From 24ca18c18e8ca3137f1e4cced1f1eb7055e98196 Mon Sep 17 00:00:00 2001 From: Lucy von Overheidt Date: Sun, 14 Sep 2025 01:19:41 +0200 Subject: [PATCH] htop --- flake.nix | 1 + modules/htop.nix | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 modules/htop.nix diff --git a/flake.nix b/flake.nix index 26e54dc..17879fd 100644 --- a/flake.nix +++ b/flake.nix @@ -25,6 +25,7 @@ ./modules/comin.nix ./modules/podman.nix ./modules/minecraft.nix + ./modules/htop.nix inputs.comin.nixosModules.comin inputs.flux.nixosModules.default diff --git a/modules/htop.nix b/modules/htop.nix new file mode 100644 index 0000000..6f267d8 --- /dev/null +++ b/modules/htop.nix @@ -0,0 +1,4 @@ +{ ... }: +{ + programs.htop.enable = true; +}