Merge pull request #329823 from ExpidusOS/fix/pkgsllvm/elfutils
[NixPkgs.git] / nixos / modules / misc / lib.nix
blob121f396701eae5395ad0bdf01778b7ddc07d7f3d
1 { lib, ... }:
4   options = {
5     lib = lib.mkOption {
6       default = {};
8       type = lib.types.attrsOf lib.types.attrs;
10       description = ''
11         This option allows modules to define helper functions, constants, etc.
12       '';
13     };
14   };