brainix/sources/nixpkgs/nixos/modules/misc/lib.nix
2026-02-13 17:06:24 +09:00

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