16 lines
337 B
Nix
16 lines
337 B
Nix
|
{ lib, ... }:
|
||
|
let
|
||
|
inherit (lib) mkOption types;
|
||
|
in
|
||
|
rec {
|
||
|
mkOpt = type: default: mkOption { inherit type default; };
|
||
|
|
||
|
mkOpt' = type: default: description: mkOption { inherit type default description; };
|
||
|
|
||
|
mkBoolOpt = default: mkOption {
|
||
|
inherit default;
|
||
|
type = types.bool;
|
||
|
example = true;
|
||
|
};
|
||
|
}
|