From 12c7e608edb41ac81316555bb4556b82d5b5a12c Mon Sep 17 00:00:00 2001 From: lassulus Date: Sat, 24 Dec 2022 10:35:03 +0100 Subject: examples: cleanup a bit --- example/swap.nix | 4 +--- example/zfs-over-legacy.nix | 2 -- 2 files changed, 1 insertion(+), 5 deletions(-) (limited to 'example') diff --git a/example/swap.nix b/example/swap.nix index 0693caa..13393fe 100644 --- a/example/swap.nix +++ b/example/swap.nix @@ -25,7 +25,6 @@ start = "100MiB"; end = "-1G"; part-type = "primary"; - bootable = true; content = { type = "filesystem"; format = "ext4"; @@ -33,12 +32,11 @@ }; } { - name = "root"; + name = "swap"; type = "partition"; start = "-1G"; end = "100%"; part-type = "primary"; - bootable = true; content = { type = "swap"; randomEncryption = true; diff --git a/example/zfs-over-legacy.nix b/example/zfs-over-legacy.nix index 8e02b00..1a6bbd3 100644 --- a/example/zfs-over-legacy.nix +++ b/example/zfs-over-legacy.nix @@ -49,7 +49,6 @@ zpool = { zroot = { type = "zpool"; - rootFsOptions.mountpoint = "none"; datasets = { "root" = { zfs_type = "filesystem"; @@ -58,7 +57,6 @@ "root/zfs_fs" = { zfs_type = "filesystem"; mountpoint = "/zfs_fs"; - options.mountpoint = "/zfs_fs"; options."com.sun:auto-snapshot" = "true"; }; }; -- cgit v1.2.3 From 164ea97c01ae57ecb76153ef43be4a184aa5d33a Mon Sep 17 00:00:00 2001 From: lassulus Date: Sun, 25 Dec 2022 14:39:02 +0100 Subject: examples complex: add short iter time for faster tests --- example/complex.nix | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'example') diff --git a/example/complex.nix b/example/complex.nix index b361196..939f71e 100644 --- a/example/complex.nix +++ b/example/complex.nix @@ -39,6 +39,9 @@ type = "luks"; name = "crypted1"; keyFile = "/tmp/secret.key"; + extraArgs = [ + "--iter-time 1" + ]; content = { type = "lvm_pv"; vg = "pool"; @@ -64,6 +67,9 @@ type = "luks"; name = "crypted2"; keyFile = "/tmp/secret.key"; + extraArgs = [ + "--iter-time 1" + ]; content = { type = "lvm_pv"; vg = "pool"; -- cgit v1.2.3