Files
nix-config/modules/nixos/boot/lanzaboote/options.nix
mjallen18 3d213c8769 nixfmt
2025-07-24 11:06:08 -05:00

13 lines
229 B
Nix

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