mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-12-17 20:30:37 +01:00
8056132e7b
Although I removed install scripts in a previous commit, with the current structure of this repository, it makes sense to include them once again.
14 lines
308 B
Bash
14 lines
308 B
Bash
#!/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
|