Files
nixos-blueprint/modules/shared/nixos/boot/lanzaboote.nix
T
unexplrd c11eeb9d20 restructure
Signed-off-by: unexplrd <unexplrd@linerds.us>
2025-11-27 14:33:33 +02:00

16 lines
232 B
Nix

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