opencomposite: add meta.platforms (#357198)
[NixPkgs.git] / lib / tests / modules / declare-enable-nested.nix
blobc8da8273cba1499b3967c593d2f665b88ae939d4
1 { lib, ... }:
4   options.set = {
5     enable = lib.mkOption {
6       default = false;
7       example = true;
8       type = lib.types.bool;
9       description = ''
10         Some descriptive text
11       '';
12     };
13   };