core/lib/tests/modules/declare-submoduleWith-shorthand.nix
2024-06-30 09:16:52 +01:00

17 lines
287 B
Nix

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