diff options
Diffstat (limited to 'content')
-rw-r--r-- | content/articles/arch-installation.md | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/content/articles/arch-installation.md b/content/articles/arch-installation.md index afcf4b5..ada1374 100644 --- a/content/articles/arch-installation.md +++ b/content/articles/arch-installation.md @@ -130,8 +130,7 @@ pacstrap -K /mnt \ linux-firmware \ parted \ btrfs-progs \ - networkmanager \ - chrony \ + iwd \ nano \ htop \ openssh \ @@ -164,8 +163,17 @@ locale-gen echo 'LANG=en_US.UTF-8' > /etc/locale.conf echo 'archlinux' > /etc/hostname echo 'root' | passwd -s -systemctl enable NetworkManager -systemctl enable chronyd +echo '[Match] +Kind=!* +Type=ether wlan + +[Network] +DHCP=yes' > /etc/systemd/network/auto.network +systemctl enable systemd-networkd.service +systemctl enable systemd-resolved.service +ln -sf ../run/systemd/resolve/stub-resolv.conf /etc/resolv.conf +systemctl enable iwd.service +systemctl enable systemd-timesyncd.service ``` The systemd bootloader is installed and configured. |