From e4b31ba0703f62afe153056319cecb2963f1de48 Mon Sep 17 00:00:00 2001 From: Youwen Wu Date: Fri, 12 Jul 2024 23:08:04 -0700 Subject: [PATCH] feat: increase timeout on systemd-boot --- configuration.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/configuration.nix b/configuration.nix index 385c03f..d73a216 100755 --- a/configuration.nix +++ b/configuration.nix @@ -11,8 +11,13 @@ ]; # Bootloader. - boot.loader.systemd-boot.enable = true; - boot.loader.efi.canTouchEfiVariables = true; + boot.loader = { + efi.canTouchEfiVariables = true; + timeout = 15; + systemd-boot = { + enable = true; + }; + }; networking.hostName = "nixos"; # Define your hostname. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.