opencomposite: add meta.platforms (#357198)
[NixPkgs.git] / lib / tests / modules / declare-submoduleWith-noshorthand.nix
blobaf3b4ba470ff60fb7cafcc6bd302486ad6d6dc0a
1 { lib, ... }: let
2   sub.options.config = lib.mkOption {
3     type = lib.types.bool;
4     default = false;
5   };
6 in {
7   options.submodule = lib.mkOption {
8     type = lib.types.submoduleWith {
9       modules = [ sub ];
10     };
11     default = {};
12   };