about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authoraktaboot <aktaboot@protonmail.com>2023-04-22 20:47:35 +0200
committeraktaboot <aktaboot@protonmail.com>2023-05-05 18:11:57 +0200
commitb3ef8214895658542bc3d6a69bf95bb321a3cfa5 (patch)
treec38b2491ec73d992f9c5207436836b0e07687cb8 /nixos
parentd0186ccec4de38f6324d6d253f8058dbf3dc0d8b (diff)
nixos/installer: fix util-linux dependencies in install scripts
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/installer/tools/tools.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/nixos/modules/installer/tools/tools.nix b/nixos/modules/installer/tools/tools.nix
index 08278d3943f39..520d19a5d0f30 100644
--- a/nixos/modules/installer/tools/tools.nix
+++ b/nixos/modules/installer/tools/tools.nix
@@ -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