From d036ce33665e9a19f27aafc3a92b81cef513130f Mon Sep 17 00:00:00 2001 From: Blake Romero Date: Fri, 20 Mar 2026 23:51:13 +0000 Subject: Replace wpa_supplicant with iwd --- post-setup.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/post-setup.sh b/post-setup.sh index 671cf13..7f63ec9 100755 --- a/post-setup.sh +++ b/post-setup.sh @@ -9,3 +9,21 @@ fi # Install additional packages apk add linux-stable git bash vim tmux \ ncurses acpi shellcheck fastfetch btop eza + +# WIFI: Switch wpa_supplicant to iwd +apk add iwd openresolv + +sed 's/#\[General\]/\[General\]/; + s/#EnableNetworkConfiguration/EnableNetworkConfiguration/; + s/#\[Network\]/\[Network\]/; + s/#NameResolvingService/NameResolvingService/' \ + -i /etc/iwd/main.conf + +resolvconf -u + +rc-service wpa_supplicant stop +rc-service iwd start + +rc-update del networking boot +rc-update del wpa_supplicant boot +rc-update add iwd boot -- cgit