boot/module.nix: add timeout of 0 for the bootloader

This commit is contained in:
Bloxx12 2025-04-09 15:31:18 +02:00
commit 5783c1136e

View file

@ -31,6 +31,8 @@ in {
}; };
loader = { loader = {
efi.canTouchEfiVariables = true; efi.canTouchEfiVariables = true;
# I love spamming space
timeout = 0;
systemd-boot = { systemd-boot = {
enable = cfg.systemd-boot.enable; enable = cfg.systemd-boot.enable;
editor = mkForce false; editor = mkForce false;