lol

nixosTests.initrd-luks-empty-passphrase: mount the host nix store

This is necessary because this test relies on switching the root fs to an empty one which
does not have a Nix store available in stage 1, therefore, we have to make this test
host-store only.

A better fix in the long term is to evaluate whether this is worth to enable a proper
Nix store image for it with EROFS?

+5
+5
nixos/tests/initrd-luks-empty-passphrase.nix
··· 18 18 emptyDiskImages = [ 512 ]; 19 19 useBootLoader = true; 20 20 useEFIBoot = true; 21 + # This requires to have access 22 + # to a host Nix store as 23 + # the new root device is /dev/vdb 24 + # an empty 512MiB drive, containing no Nix store. 25 + mountHostNixStore = true; 21 26 }; 22 27 23 28 boot.loader.systemd-boot.enable = true;