nixos/installer: fix util-linux dependencies in install scripts

This commit is contained in:
aktaboot 2023-04-22 20:47:35 +02:00
parent d0186ccec4
commit b3ef821489

@ -25,6 +25,7 @@ let
path = makeBinPath [
pkgs.jq
nixos-enter
pkgs.util-linuxMinimal
];
};
@ -65,6 +66,9 @@ let
name = "nixos-enter";
src = ./nixos-enter.sh;
inherit (pkgs) runtimeShell;
path = makeBinPath [
pkgs.util-linuxMinimal
];
};
in