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