1

Modules/Bootloader: Reduce configuration limit to 3 to fit in 512MB /boot partition

This commit is contained in:
2026-02-27 12:19:21 +01:00
parent 06cf86fa20
commit d505394753

View File

@ -20,7 +20,7 @@ in {
(lib.mkIf (bootloader.loader == "systemd-boot") { (lib.mkIf (bootloader.loader == "systemd-boot") {
boot.loader.systemd-boot = { boot.loader.systemd-boot = {
enable = true; enable = true;
configurationLimit = 5; configurationLimit = 3; # 3 initrds fit into 512MB /boot
editor = false; editor = false;
consoleMode = "max"; consoleMode = "max";
}; };