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>
This commit is contained in:
parent
82475a9a7c
commit
e7d3166656
@ -64,11 +64,14 @@ in {
|
|||||||
'';
|
'';
|
||||||
destination = "/boot.ipxe";
|
destination = "/boot.ipxe";
|
||||||
};
|
};
|
||||||
ipxeBootDir = pkgs.symlinkJoin "ipxeBootDir" [
|
ipxeBootDir = pkgs.symlinkJoin {
|
||||||
config.system.build.netbootRamdisk
|
name = "ipxeBootDir";
|
||||||
config.system.build.kernel
|
paths = [
|
||||||
ipxeScriptDir
|
config.system.build.netbootRamdisk
|
||||||
];
|
config.system.build.kernel
|
||||||
|
ipxeScriptDir
|
||||||
|
];
|
||||||
|
};
|
||||||
in
|
in
|
||||||
makeTest {
|
makeTest {
|
||||||
name = "boot-netboot";
|
name = "boot-netboot";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user