f34e5f1c6c
Importing the module directly from NixOS causes the documentation to
break, in particular the "Declared by" section.
Fixes #405
(cherry picked from commit 9b3122e92c
)
15 lines
258 B
Nix
15 lines
258 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.
|
|
'';
|
|
};
|
|
};
|
|
}
|