mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-15 21:03:59 +01:00
282288ab24
Now the install scripts are immediately accessible without the need to run chmod in the installation media.
14 lines
308 B
Bash
Executable File
14 lines
308 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Install the base packages to the mounted partition (the newly
|
|
# created filesystem).
|
|
#
|
|
# We also install grub and fish since grub is the boot loader
|
|
# and fish is the preferred shell.
|
|
#
|
|
# https://wiki.archlinux.org/index.php/Installation_guide
|
|
|
|
set -xe
|
|
|
|
pacstrap /mnt base base-devel grub fish
|