mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-15 21:03:59 +01:00
0be668443e
This makes it easier to immediately start using dotfiles and other config settings on first boot. It may even be useful to add an option to run the entire bootstrap script in the installation media. Note that if this route is taken, some assumptions regarding installation will have to be changed to adjust for the chroot environment.
10 lines
180 B
Bash
Executable File
10 lines
180 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Install packages to new filesystem
|
|
#
|
|
# https://wiki.archlinux.org/index.php/Installation_guide
|
|
|
|
set -xe
|
|
|
|
pacstrap /mnt base base-devel grub fish git polkit rng-tools
|