1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2024-12-14 11:57:34 +00:00
nix-darwin/modules/misc/lib.nix
2024-04-19 04:05:50 +02:00

15 lines
253 B
Nix

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