mirror of
https://github.com/LnL7/nix-darwin.git
synced 2024-12-15 17:51:01 +00:00
15 lines
253 B
Nix
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.
|
|
'';
|
|
};
|
|
};
|
|
}
|