12 lines
256 B
Bash
12 lines
256 B
Bash
#!/usr/bin/env bash
|
|
set -eux
|
|
|
|
pacman-key --init
|
|
|
|
# Install the system
|
|
pacstrap -K /mnt base linux linux-firmware rng-tools grub sudo \
|
|
openssh ufw git vim python-pip nomad nomad-driver-nspawn
|
|
|
|
# Clear the cache
|
|
arch-chroot /mnt pacman -Scc --noconfirm
|