mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-12-04 06:03:15 +01:00
10 lines
161 B
Plaintext
10 lines
161 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# Mount the newly created filesystem (/dev/sda1) to /mnt.
|
||
|
#
|
||
|
# https://wiki.archlinux.org/index.php/Installation_guide
|
||
|
|
||
|
set -xe
|
||
|
|
||
|
mount /dev/sda1 /mnt
|