From 842651aafb958bb8f3c69611ff941ecf29c46e6d Mon Sep 17 00:00:00 2001 From: NullBite Date: Tue, 19 Nov 2024 19:03:57 -0500 Subject: [PATCH] rpi4: set bootloader configuration limit --- hosts/rpi4/configuration.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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;