depot/third_party/home-manager/modules/misc/lib.nix

15 lines
259 B
Nix
Raw Normal View History

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