diff options
Diffstat (limited to 'installer')
| -rw-r--r-- | installer/run.sh | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/installer/run.sh b/installer/run.sh index 74e15a5..ff9ff43 100644 --- a/installer/run.sh +++ b/installer/run.sh @@ -26,7 +26,14 @@ if [ "$(id -u)" -ne 0 ] ; then fi # temporary Workaround for slow mirrors -reflector | grep rit.edu > /etc/pacman.d/mirrorlist +# reflector | grep rit.edu > /etc/pacman.d/mirrorlist + +# Our local repository should have most of our packages: +cat >> /etc/pacman.conf <<EOF +[bootstrapper] +SigLevel = Optional TrustAll +Server = file:///home/pkgrepo +EOF echo "############################################################" echo "INSTALL PROCESS" @@ -208,6 +215,7 @@ pacstrap -K "$_install_path" \ btop \ btrfs-progs \ chromium \ + chrony \ clonezilla \ cloud-init \ cryptsetup \ @@ -222,6 +230,7 @@ pacstrap -K "$_install_path" \ e2fsprogs \ edk2-shell \ efibootmgr \ + entr \ espeakup \ ethtool \ exfat-utils \ @@ -290,6 +299,7 @@ pacstrap -K "$_install_path" \ noto-fonts-emoji \ ntfs-3g \ nvme-cli \ + obs-studio \ open-iscsi \ open-vm-tools \ openbsd-netcat \ @@ -305,9 +315,10 @@ pacstrap -K "$_install_path" \ pass-otp \ pavucontrol \ pcsclite \ + pipewire \ + pipewire-pulse \ ppp \ pptpclient \ - pulseaudio \ pv \ pwgen \ qemu-guest-agent \ @@ -362,8 +373,9 @@ pacstrap -K "$_install_path" \ xorg-server \ xorg-xkill \ zsh \ - chrony \ zstd \ + yay \ + brave-bin \ set +x @@ -515,7 +527,8 @@ case $(lspci | grep VGA) in ;; *Intel*) # OpenCL Drivers - do_chroot pacman -S --needed intel-compute-runtime + do_chroot pacman -S --needed \ + intel-compute-runtime intel-media-driver libva-utils vulkan-intel vulkan-mesa ;; *) echo "No GPU detected" |
