From 9f7f23abdb161578316d94f45528fbf47982f4d9 Mon Sep 17 00:00:00 2001 From: lassulus Date: Fri, 30 Sep 2022 12:55:28 +0200 Subject: add nixos tests for disko.config, extend/fix existing tests --- example/luks-lvm.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'example/luks-lvm.nix') diff --git a/example/luks-lvm.nix b/example/luks-lvm.nix index 17e18a2..fdaba8c 100644 --- a/example/luks-lvm.nix +++ b/example/luks-lvm.nix @@ -1,8 +1,8 @@ -{ +{ disks ? [ "/dev/vdb" ] }: { disk = { vdb = { type = "disk"; - device = "/dev/vdb"; + device = builtins.elemAt disks 0; content = { type = "table"; format = "gpt"; @@ -10,7 +10,6 @@ { type = "partition"; name = "ESP"; - # fs-type = "FAT32"; start = "1MiB"; end = "100MiB"; bootable = true; @@ -34,7 +33,6 @@ keyFile = "/tmp/secret.key"; extraArgs = [ "--hash sha512" - "--iter-time 5000" ]; content = { type = "lvm_pv"; -- cgit v1.2.3