mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 10:39:42 +00:00
24 lines
558 B
Nix
24 lines
558 B
Nix
{ config, pkgs, lib, ... }: let
|
|
inherit (lib) mkIf;
|
|
|
|
cfg = config.myOptions.system.boot.secure-boot;
|
|
in {
|
|
config = mkIf cfg.enable {
|
|
# Secure Boot Key Manager
|
|
environment.systemPackages = [ pkgs.sbctl ];
|
|
|
|
# Persist the secure boot keys (for impermanence)
|
|
myOptions.system.impermanence.root.extraDirectories = [
|
|
"/etc/secureboot"
|
|
];
|
|
|
|
# Lanzaboote replaces systemd-boot
|
|
boot.loader.systemd-boot.enable = lib.mkForce false;
|
|
|
|
boot.lanzaboote = {
|
|
enable = true;
|
|
pkiBundle = "/etc/secureboot";
|
|
};
|
|
};
|
|
}
|