From 9bd896ff4b1959382fcf8f8a6153de37d459731f Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Sat, 29 Nov 2025 18:43:12 -0500 Subject: [PATCH] Install htop on hydra. --- nix/configuration/hosts/hydra/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nix/configuration/hosts/hydra/default.nix b/nix/configuration/hosts/hydra/default.nix index e9c7dbfe..6c5f425e 100644 --- a/nix/configuration/hosts/hydra/default.nix +++ b/nix/configuration/hosts/hydra/default.nix @@ -61,6 +61,10 @@ me.image_based_appliance.enable = lib.mkForce false; + environment.systemPackages = with pkgs; [ + htop + ]; + me.build_in_ram.enable = true; me.dont_use_substituters.enable = true; me.minimal_base.enable = true;