summary refs log tree commit diff
path: root/nixos/modules/misc/lib.nix
blob: be8000ac029dfe03961f98a97d5626f77fc9ff70 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ config, lib, ... }:

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

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

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