mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
17 lines
604 B
Nix
17 lines
604 B
Nix
{ lib, config, minimal, ... }:
|
|
{
|
|
options.swarselsystems.modules.lanzaboote = lib.mkEnableOption "lanzaboote config";
|
|
config = lib.mkIf config.swarselsystems.modules.lanzaboote {
|
|
boot = {
|
|
loader = {
|
|
efi.canTouchEfiVariables = true;
|
|
systemd-boot.enable = lib.swarselsystems.mkIfElse (minimal || !config.swarselsystems.isSecureBoot) (lib.mkForce true) (lib.mkForce false);
|
|
};
|
|
lanzaboote = lib.mkIf (!minimal && config.swarselsystems.isSecureBoot) {
|
|
enable = true;
|
|
pkiBundle = "/var/lib/sbctl";
|
|
configurationLimit = 6;
|
|
};
|
|
};
|
|
};
|
|
}
|