summary refs log blame commit diff
path: root/lib/tests/modules/declare-bare-submodule.nix
blob: 5402f4ff5a503eb78c0e6fc0df6557256cc5147b (plain) (tree)
1
2
3
4
5
6
7
8
9
                     






                                     
                                                                     


                 




                                                                                            
 
{ 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;
  };
}