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