nixos/nixos-enter: Add IN_NIXOS_ENTER variable

This commit is contained in:
Janne Heß 2021-10-13 13:05:54 +02:00
parent be5d1c3ca2
commit b071aea8d0
No known key found for this signature in database
GPG Key ID: 69165158F05265DF

View File

@ -68,7 +68,7 @@ mount --rbind /sys "$mountPoint/sys"
fi
# Run the activation script. Set $LOCALE_ARCHIVE to supress some Perl locale warnings.
LOCALE_ARCHIVE="$system/sw/lib/locale/locale-archive" chroot "$mountPoint" "$system/activate" 1>&2 || true
LOCALE_ARCHIVE="$system/sw/lib/locale/locale-archive" IN_NIXOS_ENTER=1 chroot "$mountPoint" "$system/activate" 1>&2 || true
# Create /tmp
chroot "$mountPoint" systemd-tmpfiles --create --remove --exclude-prefix=/dev 1>&2 || true