72904c318c
GitOrigin-RevId: 9bf1f40af124573a54fd208b1f539eb694ef31a6
14 lines
259 B
Nix
14 lines
259 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
options = {
|
|
lib = lib.mkOption {
|
|
type = lib.types.attrsOf lib.types.attrs;
|
|
default = { };
|
|
description = ''
|
|
This option allows modules to define helper functions,
|
|
constants, etc.
|
|
'';
|
|
};
|
|
};
|
|
}
|