opencomposite: add meta.platforms (#357198)
[NixPkgs.git] / lib / tests / modules / declare-bare-submodule-nested-option.nix
blobda125c84b25d4629a0400cd2b77f6241e4495293
1 { config, lib, ... }:
2 let
3   inherit (lib) mkOption types;
4 in
6   options.bare-submodule = mkOption {
7     type = types.submoduleWith {
8       shorthandOnlyDefinesConfig = config.shorthandOnlyDefinesConfig;
9       modules = [
10         {
11           options.nested = mkOption {
12             type = types.int;
13             default = 1;
14           };
15         }
16       ];
17     };
18   };