From 4cd0058a01d8a761dcd3ba5116e04ef0757fdcec Mon Sep 17 00:00:00 2001 From: matt1432 Date: Wed, 16 Oct 2024 16:03:33 -0400 Subject: [PATCH] feat: add hydra-check in common packages --- common/packages.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/packages.nix b/common/packages.nix index 2b43af23..9f41b043 100644 --- a/common/packages.nix +++ b/common/packages.nix @@ -67,6 +67,7 @@ inputs @ { # Misc CLI stuff inherit (pkgs) + hydra-check killall nix-output-monitor nix-melt @@ -90,7 +91,7 @@ inputs @ { (pkgs.writeShellApplication { name = "listDerivs"; text = '' - nix-store --query --requisites /run/current-system | cut -d- -f2- | sort -u + exec nix-store --query --requisites /run/current-system | cut -d- -f2- | sort -u ''; })