From 1cb978e2a49cc37685cc7293f009c11384871497 Mon Sep 17 00:00:00 2001 From: Thomas Syms Date: Wed, 7 Feb 2024 16:12:02 -0400 Subject: [PATCH] Limited number of old generations in systemdboot --- hosts/Equinox/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/Equinox/default.nix b/hosts/Equinox/default.nix index b3bb009..6a0b6f5 100644 --- a/hosts/Equinox/default.nix +++ b/hosts/Equinox/default.nix @@ -50,7 +50,10 @@ in { }; loader = { - systemd-boot.enable = true; + systemd-boot = { + enable = true; + configurationLimit = 5; + }; efi = { canTouchEfiVariables = true; };