From c0c040f9c01988dbd00378ca8ee407eb55225313 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 31 Aug 2025 13:21:00 +0200 Subject: [PATCH] Just install iwd along with everything else so it is always there --- install/config/hardware/network.sh | 8 ++------ install/packages.sh | 1 + 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/install/config/hardware/network.sh b/install/config/hardware/network.sh index ff2e03e..04f2f35 100755 --- a/install/config/hardware/network.sh +++ b/install/config/hardware/network.sh @@ -1,11 +1,7 @@ #!/bin/bash -# Install iwd explicitly if it wasn't included in archinstall -# This can happen if archinstall used ethernet -if ! command -v iwctl &>/dev/null; then - sudo pacman -S --noconfirm --needed iwd - sudo systemctl enable iwd.service -fi +# Ensure iwd service will be started +sudo systemctl enable iwd.service # Prevent systemd-networkd-wait-online timeout on boot sudo systemctl disable systemd-networkd-wait-online.service diff --git a/install/packages.sh b/install/packages.sh index f317821..4a2b014 100644 --- a/install/packages.sh +++ b/install/packages.sh @@ -46,6 +46,7 @@ sudo pacman -S --noconfirm --needed \ impala \ imv \ inetutils \ + iwd \ jq \ kdenlive \ kvantum-qt5 \