summaryrefslogtreecommitdiff
path: root/modules/misc/lib.nix
blob: e50794ccc5ac6c295c808058034c3e679721e0bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ lib, ... }:

{
  options = {
    lib = lib.mkOption {
      default = { };

      type = lib.types.attrsOf lib.types.attrs;

      description = ''
        This option allows modules to define helper functions, constants, etc.
      '';
    };
  };
}