From 6bdff29b0b34f6a0af614a30e56a49aa234224ee Mon Sep 17 00:00:00 2001 From: Frantisek Bohacek Date: Thu, 5 Oct 2023 19:59:03 +0200 Subject: [PATCH] feat: add configuration limit for laptop --- hosts/laptop/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/laptop/default.nix b/hosts/laptop/default.nix index d4f5b64..aa81f7a 100644 --- a/hosts/laptop/default.nix +++ b/hosts/laptop/default.nix @@ -39,7 +39,10 @@ efi = { canTouchEfiVariables = true; }; - systemd-boot.enable = true; + systemd-boot = { + enable = true; + configurationLimit = 5; + }; timeout = 1; # Grub auto select time }; -- 2.48.1