From 190a7d64f4afd1217f2f76eaf3d67f64de06769d Mon Sep 17 00:00:00 2001 From: mozempk Date: Thu, 23 Apr 2026 14:56:04 +0200 Subject: [PATCH] fix: set NIX_CONFIG build-users-group empty to skip nixbld group check in Docker --- iso/_inner-build-live.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/iso/_inner-build-live.sh b/iso/_inner-build-live.sh index 63ebf08..1629d68 100755 --- a/iso/_inner-build-live.sh +++ b/iso/_inner-build-live.sh @@ -64,6 +64,8 @@ if [[ -n "${NIX_PACKAGES_PREBAKE:-}" ]]; then # Pre-create /nix as root so the installer doesn't try 'sudo mkdir' # (sudo isn't installed in this Docker container). mkdir -m 0755 -p /nix + # Disable build-users-group so nix doesn't complain about missing nixbld group. + export NIX_CONFIG="build-users-group = " curl -fsSL https://nixos.org/nix/install | \ NIX_INSTALLER_TRUST_INSTALLER=1 sh -s -- --no-daemon --no-channel-add # shellcheck disable=SC1091