nix-config/modules/secureboot/default.nix
2025-01-08 20:48:03 +01:00

13 lines
302 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 = "/var/lib/sbctl";
};
}