From fc62e3d62f1157bafbaf96edcbdbc6d361615931 Mon Sep 17 00:00:00 2001 From: Alexander Kobjolke Date: Sun, 6 Aug 2023 14:24:51 +0200 Subject: [PATCH] dregil: Explicitly set boot loader timeout --- hosts/dregil/configuration.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/hosts/dregil/configuration.nix b/hosts/dregil/configuration.nix index 979de8f..c37fc54 100644 --- a/hosts/dregil/configuration.nix +++ b/hosts/dregil/configuration.nix @@ -21,6 +21,7 @@ in { # Use the systemd-boot EFI boot loader. boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; + boot.loader.timeout = 5; # do not protect the kernel image to allow hibernation security.protectKernelImage = lib.mkForce false;