feat: keep less generations to keep /boot free

This commit is contained in:
Leon Schwarzäugl 2025-03-12 10:06:24 +01:00
parent 3e3d25a279
commit 041c5ae4e4
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
2 changed files with 2 additions and 0 deletions

View file

@ -6316,6 +6316,7 @@ This dynamically uses systemd boot or Lanzaboote depending on `config.swarselsys
lanzaboote = lib.mkIf (!config.swarselsystems.initialSetup && config.swarselsystems.isSecureBoot) { lanzaboote = lib.mkIf (!config.swarselsystems.initialSetup && config.swarselsystems.isSecureBoot) {
enable = true; enable = true;
pkiBundle = "/var/lib/sbctl"; pkiBundle = "/var/lib/sbctl";
configurationLimit = 3;
}; };
}; };
} }

View file

@ -8,6 +8,7 @@
lanzaboote = lib.mkIf (!config.swarselsystems.initialSetup && config.swarselsystems.isSecureBoot) { lanzaboote = lib.mkIf (!config.swarselsystems.initialSetup && config.swarselsystems.isSecureBoot) {
enable = true; enable = true;
pkiBundle = "/var/lib/sbctl"; pkiBundle = "/var/lib/sbctl";
configurationLimit = 3;
}; };
}; };
} }