From 5783c1136e1b18cf482e7994cc73dd928a05fe43 Mon Sep 17 00:00:00 2001 From: Bloxx12 Date: Wed, 9 Apr 2025 15:31:18 +0200 Subject: [PATCH] boot/module.nix: add timeout of 0 for the bootloader --- modules/system/boot/module.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/system/boot/module.nix b/modules/system/boot/module.nix index 9c9214b..594308f 100644 --- a/modules/system/boot/module.nix +++ b/modules/system/boot/module.nix @@ -31,6 +31,8 @@ in { }; loader = { efi.canTouchEfiVariables = true; + # I love spamming space + timeout = 0; systemd-boot = { enable = cfg.systemd-boot.enable; editor = mkForce false;