diff --git a/system/default.nix b/system/default.nix index 75b6b1b1..d192e670 100644 --- a/system/default.nix +++ b/system/default.nix @@ -88,12 +88,15 @@ with mylib.networking; { kernelParams = ["mitigations=off"]; # I don't care about security regarding spectre/meltdown # plymouth.enable = true; - loader.systemd-boot.enable = true; - loader.systemd-boot.configurationLimit = 60; - loader.systemd-boot.editor = false; - loader.systemd-boot.consoleMode = "max"; - loader.efi.canTouchEfiVariables = true; - loader.efi.efiSysMountPoint = "/boot/efi"; + loader = { + timeout = null; + systemd-boot.enable = true; + systemd-boot.configurationLimit = 5; + systemd-boot.editor = false; + systemd-boot.consoleMode = "max"; + efi.canTouchEfiVariables = true; + efi.efiSysMountPoint = "/boot/efi"; + }; # Make /tmp volatile tmp.useTmpfs = true;