diff options
author | lassulus <lassulus@lassul.us> | 2022-12-04 13:24:38 +0100 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2022-12-04 13:31:43 +0100 |
commit | e0ce5fb75f1197cf57b0a5c46434d69c14efc842 (patch) | |
tree | 908d89fcdc5cd67d60008584f493ee055b2d504b /example | |
parent | c2bf0b6314b4bc48177e1064d9814e410bccc8f2 (diff) |
examples: use default cryptsetup parameters
Diffstat (limited to 'example')
-rw-r--r-- | example/complex.nix | 8 | ||||
-rw-r--r-- | example/config.nix | 4 | ||||
-rw-r--r-- | example/luks-lvm.nix | 3 |
3 files changed, 0 insertions, 15 deletions
diff --git a/example/complex.nix b/example/complex.nix index b3fb951..590dd9b 100644 --- a/example/complex.nix +++ b/example/complex.nix @@ -39,10 +39,6 @@ type = "luks"; name = "crypted1"; keyFile = "/tmp/secret.key"; - extraArgs = [ - "--hash sha512" - "--iter-time 5000" - ]; content = { type = "lvm_pv"; vg = "pool"; @@ -68,10 +64,6 @@ type = "luks"; name = "crypted2"; keyFile = "/tmp/secret.key"; - extraArgs = [ - "--hash sha512" - "--iter-time 5000" - ]; content = { type = "lvm_pv"; vg = "pool"; diff --git a/example/config.nix b/example/config.nix index f75ec63..58edb1e 100644 --- a/example/config.nix +++ b/example/config.nix @@ -57,10 +57,6 @@ type = "luks"; name = "crypted"; keyFile = "/tmp/secret.key"; - extraArgs = [ - "--hash sha512" - "--iter-time 5000" - ]; content = { type = "lvm_pv"; vg = "pool"; diff --git a/example/luks-lvm.nix b/example/luks-lvm.nix index 8ffb273..af1c4a3 100644 --- a/example/luks-lvm.nix +++ b/example/luks-lvm.nix @@ -31,9 +31,6 @@ type = "luks"; name = "crypted"; keyFile = "/tmp/secret.key"; - extraArgs = [ - "--hash sha512" - ]; content = { type = "lvm_pv"; vg = "pool"; |