From f165a42ec0ce7c7542542e058e4a019dff36df74 Mon Sep 17 00:00:00 2001 From: Andrew Marshall Date: Wed, 13 May 2026 18:44:42 -0400 Subject: [PATCH] nixosTests.zfs: Fix broken tests Broken in 5e0a4d739ddd85e045e684a74660b6f8e0b9f705. --- nixos/tests/zfs.nix | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/nixos/tests/zfs.nix b/nixos/tests/zfs.nix index 7851368075a0..2f78691c6cfa 100644 --- a/nixos/tests/zfs.nix +++ b/nixos/tests/zfs.nix @@ -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";