From 041c5ae4e4504f6fc2d14284703ab4e0e555562e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leon=20Schwarz=C3=A4ugl?= Date: Wed, 12 Mar 2025 10:06:24 +0100 Subject: [PATCH] feat: keep less generations to keep /boot free --- SwarselSystems.org | 1 + profiles/nixos/common/lanzaboote.nix | 1 + 2 files changed, 2 insertions(+) diff --git a/SwarselSystems.org b/SwarselSystems.org index a08ac17..6b3a967 100644 --- a/SwarselSystems.org +++ b/SwarselSystems.org @@ -6316,6 +6316,7 @@ This dynamically uses systemd boot or Lanzaboote depending on `config.swarselsys lanzaboote = lib.mkIf (!config.swarselsystems.initialSetup && config.swarselsystems.isSecureBoot) { enable = true; pkiBundle = "/var/lib/sbctl"; + configurationLimit = 3; }; }; } diff --git a/profiles/nixos/common/lanzaboote.nix b/profiles/nixos/common/lanzaboote.nix index 461f059..1b2ebf4 100644 --- a/profiles/nixos/common/lanzaboote.nix +++ b/profiles/nixos/common/lanzaboote.nix @@ -8,6 +8,7 @@ lanzaboote = lib.mkIf (!config.swarselsystems.initialSetup && config.swarselsystems.isSecureBoot) { enable = true; pkiBundle = "/var/lib/sbctl"; + configurationLimit = 3; }; }; }