From 7e2a3475f0cd06b2cd13d92ea8e070916395725a Mon Sep 17 00:00:00 2001 From: lassulus Date: Thu, 20 Jul 2023 18:43:06 +0200 Subject: [PATCH] tests lvm-raid: use grub as systemd-boot is broken with raid1 /boot --- tests/lvm-raid.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/lvm-raid.nix b/tests/lvm-raid.nix index 74a8a4f..1b8cb02 100644 --- a/tests/lvm-raid.nix +++ b/tests/lvm-raid.nix @@ -11,4 +11,8 @@ makeDiskoTest { extraInstallerConfig = { boot.kernelModules = [ "dm-raid0" "dm-mirror" ]; }; + extraSystemConfig = { + # sadly systemd-boot fails to install to a raid /boot device + boot.loader.systemd-boot.enable = false; + }; }