From 955a77e1c4ad08c1b5952718d1ef16b8bbbdbd60 Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Thu, 25 May 2023 19:05:03 +0200 Subject: [PATCH] nixosTests.systemd-initrd-btrfs-raid: mount the host Nix store Same rationale as caf6f41e2e1. --- nixos/tests/systemd-initrd-btrfs-raid.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/tests/systemd-initrd-btrfs-raid.nix b/nixos/tests/systemd-initrd-btrfs-raid.nix index c9cdf0060b1b..9196033789cb 100644 --- a/nixos/tests/systemd-initrd-btrfs-raid.nix +++ b/nixos/tests/systemd-initrd-btrfs-raid.nix @@ -6,6 +6,8 @@ import ./make-test-python.nix ({ lib, pkgs, ... }: { virtualisation = { emptyDiskImages = [ 512 512 ]; useBootLoader = true; + # Booting off the BTRFS RAID requires an available init script from the Nix store + mountHostNixStore = true; useEFIBoot = true; }; boot.loader.systemd-boot.enable = true;