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 904686c8c2
commit ba9422caa8

View File

@ -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";
};