mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-12-12 18:01:23 +01:00
11 lines
201 B
Plaintext
11 lines
201 B
Plaintext
|
#!/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
|