From 51c2437f2a605b63993ee10753154aa6af2ec498 Mon Sep 17 00:00:00 2001 From: tobiloba ogundiyan Date: Thu, 17 Jul 2025 18:57:37 -0400 Subject: [PATCH] fix broken iwd check by validating iwctl instead --- install/network.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/network.sh b/install/network.sh index 66b6c63..22691d7 100644 --- a/install/network.sh +++ b/install/network.sh @@ -1,6 +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 +if ! command -v iwctl &>/dev/null; then yay -S --noconfirm --needed iwd sudo systemctl enable --now iwd.service fi