summary refs log tree commit diff
path: root/lib/tests/modules/declare-bare-submodule-nested-option.nix
blob: da125c84b25d4629a0400cd2b77f6241e4495293 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ config, lib, ... }:
let
  inherit (lib) mkOption types;
in
{
  options.bare-submodule = mkOption {
    type = types.submoduleWith {
      shorthandOnlyDefinesConfig = config.shorthandOnlyDefinesConfig;
      modules = [
        {
          options.nested = mkOption {
            type = types.int;
            default = 1;
          };
        }
      ];
    };
  };
}