opencomposite: add meta.platforms (#357198)
[NixPkgs.git] / lib / tests / modules / merge-typeless-option.nix
blobfcd72634c1666e7919fa3e54a4358a028bd02942
1 { ... }:
3 let
4   typeless =
5     { lib, ... }:
7     {
8       options.group = lib.mkOption { };
9     };
10   childOfTypeless =
11     { lib, ... }:
13     {
14       options.group.enable = lib.mkEnableOption "nothing";
15     };
19   imports = [
20     typeless
21     childOfTypeless
22   ];
24   config.group.enable = false;