Merge pull request #264870 from K900/test-eval-fix

nixos/tests/predictable-interface-names: fix eval for systemd-stage1
This commit is contained in:
K900
2023-11-01 22:21:02 +03:00
committed by GitHub

View File

@@ -36,7 +36,7 @@ in pkgs.lib.listToAttrs (builtins.map ({ predictable, withNetworkd, systemdStage
networking.useDHCP = !withNetworkd;
# Check if predictable interface names are working in stage-1
boot.initrd.postDeviceCommands = script;
boot.initrd.postDeviceCommands = lib.mkIf (!systemdStage1) script;
boot.initrd.systemd = lib.mkIf systemdStage1 {
enable = true;