1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-05 16:27:03 +00:00
nix-darwin/modules/misc/lib.nix

16 lines
253 B
Nix
Raw Normal View History

{ lib, ... }:
{
options = {
lib = lib.mkOption {
default = { };
type = lib.types.attrsOf lib.types.attrs;
2024-04-14 23:02:32 +02:00
description = ''
This option allows modules to define helper functions, constants, etc.
'';
};
};
}