diff --git a/hosts/rpi4/configuration.nix b/hosts/rpi4/configuration.nix index 29eb691..52dcaa3 100644 --- a/hosts/rpi4/configuration.nix +++ b/hosts/rpi4/configuration.nix @@ -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;