pushed config limit up to 100

This commit is contained in:
KoenDR06 2025-09-13 22:20:45 +02:00
parent 94ff148458
commit c88b4212ef
2 changed files with 3 additions and 3 deletions

View file

@ -14,7 +14,7 @@ in {
config = mkIf cfg.enable { config = mkIf cfg.enable {
boot.loader.grub.enable = true; boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/sda"; boot.loader.grub.device = "/dev/sda"; # TODO This is probably incorrect
boot.loader.grub.configurationLimit = 10; boot.loader.grub.configurationLimit = 100;
}; };
} }

View file

@ -14,6 +14,6 @@ in {
config = mkIf cfg.enable { config = mkIf cfg.enable {
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;
boot.loader.systemd-boot.configurationLimit = 10; boot.loader.systemd-boot.configurationLimit = 100;
}; };
} }