mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-12-01 20:55:51 +01:00
4e81aab657
This helps separate the installation process from the other scripts that are usually ran after a reboot, although this may change in the future if chroot is preferred over executing the commands later.
11 lines
201 B
Bash
11 lines
201 B
Bash
#!/bin/sh
|
|
#
|
|
# Generate the fstab file so that the filesystem is
|
|
# automatically mounted on boot.
|
|
#
|
|
# https://wiki.archlinux.org/index.php/Installation_guide
|
|
|
|
set -xe
|
|
|
|
genfstab -U /mnt > /mnt/etc/fstab
|