diff --git a/install/network.sh b/install/network.sh new file mode 100644 index 0000000..5f06ce8 --- /dev/null +++ b/install/network.sh @@ -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