8 lines
158 B
Nix
8 lines
158 B
Nix
{ config, lib, ... }:
|
|
|
|
lib.mkIf (config.jalr.bootloader == "lanzaboote") {
|
|
boot.lanzaboote = {
|
|
enable = true;
|
|
pkiBundle = "/etc/secureboot";
|
|
};
|
|
}
|