Merge pull request #122 from rockorager/explicit-iwd-install

install: explicitly install iwd
This commit is contained in:
David Heinemeier Hansson 2025-07-10 14:47:24 -04:00 committed by GitHub
commit e22b3db049
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

6
install/network.sh Normal file
View File

@ -0,0 +1,6 @@
# Install iwd explicitly if it wasn't included in archinstall
# This can happen if archinstall used ethernet
if ! command -v iwd &>/dev/null; then
yay -S --noconfirm --needed iwd
sudo systemctl enable --now iwd.service
fi