1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-26 00:18:30 +02:00
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;
2020-02-02 00:39:17 +01:00
default = { };
description = ''
This option allows modules to define helper functions,
constants, etc.
'';
};
};
}