nixosTests.zfs: Fix broken tests

Broken in 5e0a4d739d.
This commit is contained in:
Andrew Marshall
2026-05-13 18:44:42 -04:00
parent da5ad661ba
commit f165a42ec0
+11 -2
View File
@@ -226,8 +226,17 @@ in
enableSystemdStage1 = true;
};
installerBoot = (import ./installer.nix { inherit system; }).separateBootZfs;
installer = (import ./installer.nix { inherit system; }).zfsroot;
installerBoot =
(import ./installer.nix {
inherit system;
systemdStage1 = false;
}).separateBootZfs;
installer =
(import ./installer.nix {
inherit system;
systemdStage1 = false;
}).zfsroot;
expand-partitions = makeTest {
name = "multi-disk-zfs";