da702a4034
Of course, you'll get a bunch of warnings from the activation script: $ nixos-enter --root /tmp/mnt/ setting up /etc... mount: /dev: permission denied. mount: /dev/pts: permission denied. mount: /dev/shm: permission denied. mount: /sys: permission denied. /nix/var/nix/profiles/system/activate: line 74: /proc/sys/kernel/modprobe: Permission denied chown: changing ownership of '/run/wrappers/wrappers.0pKlU8JsvV/dbus-daemon-launch-helper': Invalid argument NOTE: Under Linux, effective file capabilities must either be empty, or exactly match the union of selected permitted and inheritable bits. Failed to set capabilities on file `/run/wrappers/wrappers.0pKlU8JsvV/ping' (Operation not permitted) chown: changing ownership of '/run/wrappers/wrappers.0pKlU8JsvV/unix_chkpwd': Invalid argument [root@nixos:/]#
60 lines
1.4 KiB
Bash
60 lines
1.4 KiB
Bash
#! @shell@
|
|
|
|
set -e
|
|
|
|
# Re-exec ourselves in a private mount namespace so that our bind
|
|
# mounts get cleaned up automatically.
|
|
if [ -z "$NIXOS_ENTER_REEXEC" ]; then
|
|
export NIXOS_ENTER_REEXEC=1
|
|
if [ "$(id -u)" != 0 ]; then
|
|
extraFlags="-r"
|
|
fi
|
|
exec unshare --fork --mount --uts --mount-proc --pid $extraFlags -- "$0" "$@"
|
|
else
|
|
mount --make-rprivate /
|
|
fi
|
|
|
|
mountPoint=/mnt
|
|
command=("bash" "--login")
|
|
system=/nix/var/nix/profiles/system
|
|
|
|
while [ "$#" -gt 0 ]; do
|
|
i="$1"; shift 1
|
|
case "$i" in
|
|
--root)
|
|
mountPoint="$1"; shift 1
|
|
;;
|
|
--system)
|
|
system="$1"; shift 1
|
|
;;
|
|
--help)
|
|
exec man nixos-enter
|
|
exit 1
|
|
;;
|
|
--command|-c)
|
|
command=("bash" "-c" "$1")
|
|
shift 1
|
|
;;
|
|
--)
|
|
command=("$@")
|
|
break
|
|
;;
|
|
*)
|
|
echo "$0: unknown option \`$i'"
|
|
exit 1
|
|
;;
|
|
esac
|
|
done
|
|
|
|
if [[ ! -e $mountPoint/etc/NIXOS ]]; then
|
|
echo "$0: '$mountPoint' is not a NixOS installation" >&2
|
|
exit 126
|
|
fi
|
|
|
|
mkdir -m 0755 -p "$mountPoint/dev"
|
|
mount --rbind /dev "$mountPoint/dev"
|
|
|
|
# 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" >&2 || true
|
|
|
|
exec chroot "$mountPoint" "${command[@]}"
|