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

16 lines
231 B
Nix

{ lanzaboote, pkgs, ... }:
{
imports = [
lanzaboote.nixosModules.lanzaboote
];
boot.lanzaboote = {
enable = true;
pkiBundle = "/etc/secureboot";
};
environment.systemPackages = with pkgs; [
sbctl
];
}