python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / nixos / modules / misc / lib.nix
blobf97e9209e2f1eaef672a41135996585ccf864281
1 { lib, ... }:
4   options = {
5     lib = lib.mkOption {
6       default = {};
8       type = lib.types.attrsOf lib.types.attrs;
10       description = lib.mdDoc ''
11         This option allows modules to define helper functions, constants, etc.
12       '';
13     };
14   };