From d50539475398e28116783220a17d546f9c3ce6b2 Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Fri, 27 Feb 2026 12:19:21 +0100 Subject: [PATCH] Modules/Bootloader: Reduce configuration limit to 3 to fit in 512MB /boot partition --- system/systemmodules/bootloader/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/systemmodules/bootloader/default.nix b/system/systemmodules/bootloader/default.nix index 7686b222..a14247df 100644 --- a/system/systemmodules/bootloader/default.nix +++ b/system/systemmodules/bootloader/default.nix @@ -20,7 +20,7 @@ in { (lib.mkIf (bootloader.loader == "systemd-boot") { boot.loader.systemd-boot = { enable = true; - configurationLimit = 5; + configurationLimit = 3; # 3 initrds fit into 512MB /boot editor = false; consoleMode = "max"; };