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

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