2014-05-05 19:58:51 +01:00
|
|
|
{ config, lib, ... }:
|
2012-07-12 18:46:04 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
options = {
|
2014-05-05 19:58:51 +01:00
|
|
|
lib = lib.mkOption {
|
2012-07-12 18:46:04 +01:00
|
|
|
default = {};
|
|
|
|
|
2014-05-05 19:58:51 +01:00
|
|
|
type = lib.types.attrsOf lib.types.attrs;
|
2012-07-12 18:46:04 +01:00
|
|
|
|
|
|
|
description = ''
|
|
|
|
This option allows modules to define helper functions, constants, etc.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|