From 1cf9492e5792d2f63e9c4161239ddf18b448f2e4 Mon Sep 17 00:00:00 2001 From: Tim Culverhouse Date: Thu, 10 Jul 2025 13:45:17 -0500 Subject: [PATCH] install: explicitly install iwd When archinstall is run using an ethernet connection, iwd will not be installed. Explicitly install and enable the service --- install/network.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 install/network.sh 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