nix-config/modules/secureboot/default.nix
2024-08-02 23:49:06 +02:00

13 lines
303 B
Nix

{ lib, config, pkgs, ... }: let
inherit (lib) mkIf mkForce;
inherit (config) conf;
in mkIf conf.secureboot.enable {
environment.systemPackages = [ pkgs.sbctl ];
boot.loader.systemd-boot.enable = mkForce false;
boot.lanzaboote = {
enable = true;
pkiBundle = "/etc/secureboot";
};
}