From fdb6193ef1053b7a7a86b6b84ec8c9b697960854 Mon Sep 17 00:00:00 2001 From: technofab Date: Wed, 2 Oct 2024 18:26:14 +0200 Subject: [PATCH] fix(utils): migrate utils to the new syntax aswell --- lib/utils.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils.nix b/lib/utils.nix index 2fd49d0..a40dadd 100644 --- a/lib/utils.nix +++ b/lib/utils.nix @@ -40,7 +40,7 @@ echo -e "\\e[0Ksection_end:`date +%s`:commit\\r\\e[0K" '' ]; - deps = (jobArgs.deps or []) ++ [pkgs.openssh pkgs.gitMinimal pkgs.gnused]; + nix.deps = (jobArgs.nix.deps or []) ++ [pkgs.openssh pkgs.gitMinimal pkgs.gnused]; }; }; }