dcgm: 3.3.5 -> 3.3.9; cudaPackages_10{,_0,_1,_2}: drop (#357655)
[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   };