mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-29 03:34:46 +01:00
16 lines
322 B
Bash
16 lines
322 B
Bash
#!/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
|