nixpkgs/test/boot-stage-1-init.sh

18 lines
197 B
Bash
Raw Normal View History

#! @shell@
# Print a greeting.
cat <<EOF
<<< NixOS Stage 1 >>>
EOF
# Set the PATH.
export PATH=/empty
for i in @path@; do
PATH=$PATH:$i/bin
done
# Start an interactive shell.
exec @shell@