"Release" 25.11 Hooray
Some checks failed
CI / Check, build and cache nixfiles (push) Failing after 34m0s

This commit is contained in:
2025-12-04 22:27:33 +00:00
parent 4433395125
commit 8e95b1ba2a
12 changed files with 91 additions and 95 deletions

View File

@@ -45,6 +45,11 @@ in
wait-online.enable = true;
};
settings.Manager = {
DefaultTimeoutStartSec = 20;
DefaultDeviceTimeoutSec = 20;
};
services.connect-nvme = {
description = "Connect NVMe-oF";
before = [ "initrd-root-device.target" ];
@@ -60,18 +65,7 @@ in
wantedBy = [ "initrd-root-device.target" ];
};
# TODO: Remove when 25.11 releases
} // (if (lib.versionAtLeast lib.my.upstreamRelease "25.11") then {
settings.Manager = {
DefaultTimeoutStartSec = 20;
DefaultDeviceTimeoutSec = 20;
};
} else {
extraConfig = ''
DefaultTimeoutStartSec=20
DefaultDeviceTimeoutSec=20
'';
});
};
};
};
};