feat: add hydra-check in common packages
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2024-10-16 16:03:33 -04:00
parent 67d3c49990
commit 4cd0058a01

View file

@ -67,6 +67,7 @@ inputs @ {
# Misc CLI stuff # Misc CLI stuff
inherit inherit
(pkgs) (pkgs)
hydra-check
killall killall
nix-output-monitor nix-output-monitor
nix-melt nix-melt
@ -90,7 +91,7 @@ inputs @ {
(pkgs.writeShellApplication { (pkgs.writeShellApplication {
name = "listDerivs"; name = "listDerivs";
text = '' 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
''; '';
}) })