mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 02:39:45 +01:00
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.
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
}
|