1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-02 21:13:33 +02:00
home-manager/modules/misc/lib.nix
2020-02-02 01:07:28 +01:00

15 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.
'';
};
};
}