install: explicitly install iwd

When archinstall is run using an ethernet connection, iwd will not be
installed. Explicitly install and enable the service
This commit is contained in:
Tim Culverhouse
2025-07-10 13:45:17 -05:00
committed by David Heinemeier Hansson
parent bbb639f8d3
commit 2b0805a66d

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