02cf88bb76
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
15 lines
262 B
Nix
15 lines
262 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
options = {
|
|
lib = lib.mkOption {
|
|
default = {};
|
|
|
|
type = lib.types.attrsOf lib.types.attrs;
|
|
|
|
description = lib.mdDoc ''
|
|
This option allows modules to define helper functions, constants, etc.
|
|
'';
|
|
};
|
|
};
|
|
}
|