mirror of
https://github.com/nix-community/disko
synced 2024-11-10 06:14:14 +00:00
Merge pull request #302 from rogarb/luks-settings-test
This commit is contained in:
commit
713eb78002
1 changed files with 5 additions and 1 deletions
|
@ -58,7 +58,11 @@
|
||||||
content = {
|
content = {
|
||||||
type = "luks";
|
type = "luks";
|
||||||
name = "crypted2";
|
name = "crypted2";
|
||||||
settings.keyFile = "/tmp/secret.key";
|
settings = {
|
||||||
|
keyFile = "/tmp/secret.key";
|
||||||
|
keyFileSize = 8;
|
||||||
|
keyFileOffset = 2;
|
||||||
|
};
|
||||||
extraFormatArgs = [
|
extraFormatArgs = [
|
||||||
"--iter-time 1" # unsecure but fast for tests
|
"--iter-time 1" # unsecure but fast for tests
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue