mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
16 lines
252 B
Nix
16 lines
252 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
options = {
|
|
lib = lib.mkOption {
|
|
default = {};
|
|
|
|
type = lib.types.attrsOf lib.types.attrs;
|
|
|
|
description = ''
|
|
This option allows modules to define helper functions, constants, etc.
|
|
'';
|
|
};
|
|
};
|
|
}
|