13 lines
255 B
Nix
13 lines
255 B
Nix
{ lib, namespace, ... }:
|
|
with lib;
|
|
let
|
|
inherit (lib.${namespace}) mkOpt;
|
|
in
|
|
{
|
|
options.${namespace}.bootloader.lanzaboote = {
|
|
enable = mkEnableOption "enable lanzaboote";
|
|
|
|
configLimit = mkOpt types.int 10 "Number of boot items to keep";
|
|
};
|
|
}
|