2018-07-20 13:56:59 -07:00
|
|
|
{ lib, ... }:
|
2012-07-12 10:46:04 -07:00
|
|
|
|
|
|
|
{
|
|
|
|
options = {
|
2014-05-05 11:58:51 -07:00
|
|
|
lib = lib.mkOption {
|
2012-07-12 10:46:04 -07:00
|
|
|
default = {};
|
|
|
|
|
2014-05-05 11:58:51 -07:00
|
|
|
type = lib.types.attrsOf lib.types.attrs;
|
2012-07-12 10:46:04 -07:00
|
|
|
|
|
|
|
description = ''
|
|
|
|
This option allows modules to define helper functions, constants, etc.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|