summary refs log tree commit diff
path: root/lib/tests/modules/declare-submoduleWith-shorthand.nix
blob: 63ac16293e2bbd7d192f9f28ccb02a31ab5a29a5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ lib, ... }: let
  sub.options.config = lib.mkOption {
    type = lib.types.bool;
    default = false;
  };
in {
  options.submodule = lib.mkOption {
    type = lib.types.submoduleWith {
      modules = [ sub ];
      shorthandOnlyDefinesConfig = true;
    };
    default = {};
  };
}