nixos/tests/netboot: Fix evaluation error

Regression introduced by dfe608c8a2ecfdf0ab2838a967440207250a0b95.

The commit turns the two arguments into one attrset argument so we need
to adapt that to use the new calling convention.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>

aszlig e7d31666 82475a9a

Changed files
+9 -6
nixos
tests
+9 -6
nixos/tests/boot.nix
···
'';
destination = "/boot.ipxe";
};
-
ipxeBootDir = pkgs.symlinkJoin "ipxeBootDir" [
-
config.system.build.netbootRamdisk
-
config.system.build.kernel
-
ipxeScriptDir
-
];
+
ipxeBootDir = pkgs.symlinkJoin {
+
name = "ipxeBootDir";
+
paths = [
+
config.system.build.netbootRamdisk
+
config.system.build.kernel
+
ipxeScriptDir
+
];
+
};
in
makeTest {
name = "boot-netboot";
···
$machine->shutdown;
'';
};
-
}
+
}