about summary refs log tree commit diff
path: root/nixpkgs/nixos/tests/initrd-luks-empty-passphrase.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/nixos/tests/initrd-luks-empty-passphrase.nix')
-rw-r--r--nixpkgs/nixos/tests/initrd-luks-empty-passphrase.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/nixpkgs/nixos/tests/initrd-luks-empty-passphrase.nix b/nixpkgs/nixos/tests/initrd-luks-empty-passphrase.nix
index 521456e7e0b2..a846c120415d 100644
--- a/nixpkgs/nixos/tests/initrd-luks-empty-passphrase.nix
+++ b/nixpkgs/nixos/tests/initrd-luks-empty-passphrase.nix
@@ -14,6 +14,8 @@ in {
   name = "initrd-luks-empty-passphrase";
 
   nodes.machine = { pkgs, ... }: {
+    imports = lib.optionals (!systemdStage1) [ ./common/auto-format-root-device.nix ];
+
     virtualisation = {
       emptyDiskImages = [ 512 ];
       useBootLoader = true;
@@ -23,6 +25,7 @@ in {
       # the new root device is /dev/vdb
       # an empty 512MiB drive, containing no Nix store.
       mountHostNixStore = true;
+      fileSystems."/".autoFormat = lib.mkIf systemdStage1 true;
     };
 
     boot.loader.systemd-boot.enable = true;