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

16 lines
231 B
Nix
Raw Normal View History

{ lanzaboote, pkgs, ... }:
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";
};
environment.systemPackages = with pkgs; [
sbctl
];
2024-10-09 03:36:08 -04:00
}