From 91e0c3cd2a67453909143be003a378c0665bfae8 Mon Sep 17 00:00:00 2001 From: Mohammad Rafiq Date: Sat, 22 Mar 2025 02:16:22 +0800 Subject: [PATCH] chore(systemd-boot): set configuration limit to 5 --- systems/modules/bootloaders/systemd-boot.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/systems/modules/bootloaders/systemd-boot.nix b/systems/modules/bootloaders/systemd-boot.nix index f05d5c3..e9d3fa7 100644 --- a/systems/modules/bootloaders/systemd-boot.nix +++ b/systems/modules/bootloaders/systemd-boot.nix @@ -2,6 +2,7 @@ boot.loader = { timeout = 5; systemd-boot.enable = true; + systemd-boot.configurationLimit = 5; efi.canTouchEfiVariables = true; }; }