nixos/tests: fix userborn-immutable-etc test

/etc/resolvconf.conf tries to modify files in /etc which obviously
doesn't work with an immutable /etc. Use systemd-networkd instead which
doesn't touch files in /etc.
This commit is contained in:
nikstur
2025-09-16 14:03:56 +02:00
parent 4e64dfc2f1
commit 84f6bb7454

View File

@@ -6,6 +6,7 @@ let
common = {
services.userborn.enable = true;
boot.initrd.systemd.enable = true;
networking.useNetworkd = true;
system.etc.overlay = {
enable = true;
mutable = false;