diff options
| author | aristote <quentin.aristote@irif.fr> | 2025-02-27 18:40:42 +0100 |
|---|---|---|
| committer | aristote <quentin.aristote@irif.fr> | 2025-02-27 18:40:42 +0100 |
| commit | a2ff80d2e83170d5a98775cf60d032cfaae7d590 (patch) | |
| tree | d1926f678c381e5db240c10242b9120c0dd373ab | |
| parent | dbb8993d50188deb14a65f948b630dd1fbfe9257 (diff) | |
nixos: hardware: luks: fix keyFileTimeout
| -rw-r--r-- | modules/nixos/personal/hardware.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/nixos/personal/hardware.nix b/modules/nixos/personal/hardware.nix index 3604852..0c7a068 100644 --- a/modules/nixos/personal/hardware.nix +++ b/modules/nixos/personal/hardware.nix @@ -55,7 +55,8 @@ in { cfg.disks.crypted; preLVM = true; fallbackToPassword = true; - keyFileTimeout = 1; + # only supported with systemd-initrd + # keyFileTimeout = 1; keyFile = config.fileSystems."/boot".device + ":/keyfile"; |
