mirror of
https://github.com/nix-community/home-manager
synced 2024-11-04 18:29:45 +01:00
9b3122e92c
Importing the module directly from NixOS causes the documentation to break, in particular the "Declared by" section. Fixes #405
14 lines
258 B
Nix
14 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.
|
|
'';
|
|
};
|
|
};
|
|
}
|