12 lines
165 B
Nix
12 lines
165 B
Nix
{ lanzaboote, ... }:
|
|
{
|
|
imports = [
|
|
lanzaboote.nixosModules.lanzaboote
|
|
];
|
|
|
|
boot.lanzaboote = {
|
|
enable = true;
|
|
pkiBundle = "/etc/secureboot";
|
|
};
|
|
}
|