mirror of
https://github.com/basecamp/omarchy.git
synced 2025-07-27 12:19:24 +00:00

When archinstall is run using an ethernet connection, iwd will not be installed. Explicitly install and enable the service
7 lines
226 B
Bash
7 lines
226 B
Bash
# 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
|