NixOS-Config/modules/system/devices/boot/lanzaboote/default.nix

12 lines
165 B
Nix
Raw Normal View History

2024-10-18 15:32:32 -04:00
{ lanzaboote, ... }:
2024-10-09 03:36:08 -04:00
{
2024-10-18 15:32:32 -04:00
imports = [
lanzaboote.nixosModules.lanzaboote
];
2024-10-09 03:36:08 -04:00
boot.lanzaboote = {
enable = true;
pkiBundle = "/etc/secureboot";
};
}