dacbert: repair evaluation with boot.initrd.systemd

This commit is contained in:
Astro 2024-01-09 18:48:37 +01:00
parent accbea1f01
commit 2b40187198
2 changed files with 4 additions and 1 deletions

View File

@ -100,6 +100,9 @@ in
useTmpfs = true;
tmpfsSize = "80%";
};
# HACK
initrd.secrets = lib.mkForce {};
};
# hardware.raspberry-pi."4" = {
# fkms-3d.enable = true;

View File

@ -24,7 +24,7 @@
enable = true;
flushBeforeStage2 = false;
# DHCP: 120 tries every 1 second
udhcpc.extraArgs = [ "-t" "120" "-T" "1" ];
udhcpc.extraArgs = lib.mkIf (!config.boot.initrd.systemd.enable) [ "-t" "120" "-T" "1" ];
};
supportedFilesystems = lib.mkForce [
"nfs"