mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-12 01:59:37 +08:00
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.
|
|
'';
|
|
};
|
|
};
|
|
}
|