Initial commit

This commit is contained in:
2026-07-02 15:56:21 +02:00
commit 4529a3c472
92 changed files with 13593 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
# Install a minimal base system, generate fstab, copy this repo into the new root.
# Sourced by run.sh. The FULL package set is installed later by 02-system/run.sh.
pacstrap -K /mnt \
base linux linux-firmware intel-ucode amd-ucode \
mkinitcpio networkmanager sudo git base-devel vim efibootmgr terminus-font
genfstab -U /mnt >> /mnt/etc/fstab
# carry the repo into the installed system so provisioning can run after reboot
mkdir -p /mnt/root
cp -a "$REPO_ROOT" /mnt/root/arch-system-th