nixpkgs/nixos/modules/misc/lib.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
262 B
Nix
Raw Normal View History

{ lib, ... }:
{
options = {
lib = lib.mkOption {
default = {};
type = lib.types.attrsOf lib.types.attrs;
description = lib.mdDoc ''
This option allows modules to define helper functions, constants, etc.
'';
};
};
}