Files
nix-config/modules/nixos/boot/lanzaboote/options.nix

12 lines
228 B
Nix

{ lib, namespace, ... }:
with lib;
{
options.${namespace}.bootloader.lanzaboote = {
enable = mkEnableOption "enable lanzaboote";
configLimit = mkOption {
type = with types; int;
default = 10;
};
};
}