From 380973d51433c73ea9de0f2917de0ac1952162bd Mon Sep 17 00:00:00 2001 From: Frost-Phoenix <67cyril6767@gmail.com> Date: Sat, 10 Feb 2024 15:03:00 +0100 Subject: [PATCH] increase configurationLimit to 5 --- modules/core/bootloader.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/bootloader.nix b/modules/core/bootloader.nix index c1044fe..0e26097 100644 --- a/modules/core/bootloader.nix +++ b/modules/core/bootloader.nix @@ -2,6 +2,6 @@ { boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; - boot.loader.systemd-boot.configurationLimit = 3; + boot.loader.systemd-boot.configurationLimit = 5; boot.kernelPackages = pkgs.linuxPackages_lqx; }