From 5f95eb8b1a8eb7e273730053a84188925fc1d876 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Eug=C3=AAnio?= Date: Sun, 23 Apr 2023 23:36:22 -0300 Subject: [PATCH] boot: don't timeout on password prompt --- system/boot.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/system/boot.nix b/system/boot.nix index 17fee1a..7a2fd82 100644 --- a/system/boot.nix +++ b/system/boot.nix @@ -16,6 +16,10 @@ "rd.systemd.show_status=false" "rd.udev.log_level=3" "udev.log_priority=3" + + # Disable password timeout + "luks.options=timeout=0" + "rootflags=x-systemd.device-timeout=0" ]; initrd.systemd.enable = true;