rpi4: set bootloader configuration limit

This commit is contained in:
NullBite 2024-11-19 19:03:57 -05:00
parent e08e916cbc
commit 842651aafb
Signed by: nullbite
GPG Key ID: 6C4D545385D4925A

View File

@ -28,7 +28,10 @@
# Use the extlinux boot loader. (NixOS wants to enable GRUB by default)
boot.loader.grub.enable = false;
# Enables the generation of /boot/extlinux/extlinux.conf
boot.loader.generic-extlinux-compatible.enable = true;
boot.loader.generic-extlinux-compatible = {
enable = true;
configurationLimit = 5;
};
# temporary while i am away from server
boot.kernelPackages = pkgs.linuxPackages_6_6;