1
0
Fork 0

Add Enable NetworkManager Service

This commit is contained in:
Tobias Strobel 2022-09-25 18:11:01 +02:00
parent de79317fb3
commit 842511035a
1 changed files with 2 additions and 3 deletions

View File

@ -23,9 +23,6 @@
set -uo pipefail
trap 's=$?; echo "$0: Error on line "$LINENO": $BASH_COMMAND"; exit $s' ERR
exec 1> >(tee "/root/stdout.log")
exec 2> >(tee "/root/stderr.log" >&2)
args=()
target_device=""
new_hostname=""
@ -187,6 +184,8 @@ arch-chroot /mnt bootctl install
# Enable resolved
systemctl --root /mnt enable systemd-resolved
# Enable NetworkManager
systemctl --root /mnt enable NetworkManager
# Enable homed
systemctl --root /mnt enable systemd-homed