Start splitting up the big config folder

This commit is contained in:
David Heinemeier Hansson
2025-08-25 11:09:15 +02:00
parent 5a98771e5b
commit 68a51c18a8
8 changed files with 8 additions and 7 deletions

View File

@@ -0,0 +1,12 @@
#!/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
chrootable_systemctl_enable 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