Merge pull request #298967 from vbgl/ocaml-5.2.0
[NixPkgs.git] / lib / tests / modules / declare-set.nix
blob853418531a8120301fefd08c667e7dad37b8466b
1 { lib, ... }:
4   options.set = lib.mkOption {
5     default = { };
6     example = { a = 1; };
7     type = lib.types.attrsOf lib.types.int;
8     description = ''
9       Some descriptive text
10     '';
11   };