Files
nixos-blueprint/modules/nixos/shared/module/lanzaboote.nix
T
2026-01-24 22:57:18 +02:00

16 lines
234 B
Nix

{
config,
inputs,
...
}: {
imports = with inputs; [
lanzaboote.nixosModules.lanzaboote
];
boot = {
lanzaboote = {
enable = config.unexplrd.config.secureBoot;
pkiBundle = "/var/lib/sbctl";
};
};
}