13 lines
414 B
Bash
13 lines
414 B
Bash
#!/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
|
|
yay -S --noconfirm --needed iwd
|
|
sudo systemctl enable --now iwd.service
|
|
fi
|
|
|
|
# Prevent systemd-networkd-wait-online timeout on boot
|
|
sudo systemctl disable systemd-networkd-wait-online.service
|
|
sudo systemctl mask systemd-networkd-wait-online.service
|