mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-29 11:44:45 +01:00
16 lines
322 B
Plaintext
16 lines
322 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# The installation process is done. Unmount the filesystem and
|
||
|
# restart the computer in order to boot into the new system.
|
||
|
#
|
||
|
# Alternatively, you can perform more operations with chroot
|
||
|
# before you unmount and reboot.
|
||
|
#
|
||
|
# https://wiki.archlinux.org/index.php/Installation_guide
|
||
|
|
||
|
set -xe
|
||
|
|
||
|
umount /mnt
|
||
|
|
||
|
reboot
|