From b594e2ce0f471142c261eaf482acb18671e53a1e Mon Sep 17 00:00:00 2001 From: Phillip Date: Sun, 8 Sep 2024 00:41:54 +0100 Subject: [PATCH] Add missing packages to pacstrap --- scripts/0-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/0-install.sh b/scripts/0-install.sh index 8fa523d..bad2094 100644 --- a/scripts/0-install.sh +++ b/scripts/0-install.sh @@ -65,7 +65,7 @@ if [[ "$password" == "$password2" ]]; then echo "Credentials saved" fi # Run pacstrap and install base packages -pacstrap -i /mnt base base-devel linux linux-firmware rsync networkmanager grub efibootmgr dosfstools os-prober nano dkms dbus-broker-units mkinitcpio iptables-nft --noconfirm --needed +pacstrap -i /mnt base base-devel linux linux-firmware linux-headers git openssh rsync networkmanager grub efibootmgr dosfstools os-prober nano dkms dbus-broker-units mkinitcpio iptables-nft --noconfirm --needed # Create the /boot/efi directory, then mount the EFI partition (and the home partition if selected) mkdir /mnt/boot/efi mount /dev/$efipar /mnt/boot/efi