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