From 3a8903e0fe7d359960cc631b7b9210c0698e4d68 Mon Sep 17 00:00:00 2001 From: Jamie Magee Date: Sat, 10 Jun 2023 11:13:57 -0700 Subject: [PATCH] systemd: limit to 5 boot entries --- hosts/common/optional/systemd-boot.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/hosts/common/optional/systemd-boot.nix b/hosts/common/optional/systemd-boot.nix index 40d04b2..356a7ce 100644 --- a/hosts/common/optional/systemd-boot.nix +++ b/hosts/common/optional/systemd-boot.nix @@ -3,6 +3,7 @@ systemd-boot = { enable = true; consoleMode = "max"; + configurationLimit = 5; }; efi.canTouchEfiVariables = true; };