nixos/build: Fix netboot initrd systemd config

`boot.initrd.systemd.extraConfig` was removed upstream and now fails
an assertion, which broke the `netbootArchive` target and with it the
second build step of the installer release workflow. Move the two
timeout settings to `settings.Manager`.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-08-18 22:52:30 +01:00
parent 05918ec2ce
commit cbc48e456d
+4 -4
View File
@@ -64,10 +64,10 @@ let
ip = "${iproute2}/bin/ip"; ip = "${iproute2}/bin/ip";
nbd-client = "${nbd}/bin/nbd-client"; nbd-client = "${nbd}/bin/nbd-client";
}; };
extraConfig = '' settings.Manager = {
DefaultTimeoutStartSec=20 DefaultTimeoutStartSec = "20s";
DefaultDeviceTimeoutSec=20 DefaultDeviceTimeoutSec = "20s";
''; };
network = { network = {
enable = true; enable = true;