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

  # config-dependent options: won't recommend, but useful for making this test parameterized
  options.shorthandOnlyDefinesConfig = mkOption {
    default = false;
  };
}