From 40a8f0e6862c2a0e64c2555d19a4c6eb216ab3a6 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Sun, 19 Sep 2021 16:56:18 -0400 Subject: [PATCH] feat: make systemd timeout default not definite --- profiles/boot/systemd-boot.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiles/boot/systemd-boot.nix b/profiles/boot/systemd-boot.nix index ab72cc0..91f9535 100644 --- a/profiles/boot/systemd-boot.nix +++ b/profiles/boot/systemd-boot.nix @@ -7,6 +7,6 @@ }; efi.canTouchEfiVariables = true; - timeout = 3; + timeout = lib.mkDefault 3; }; }