nixpkgs/lib/tests/modules/declare-submoduleWith-noshorthand.nix

14 lines
245 B
Nix
Raw Normal View History

2020-01-01 00:11:45 +00:00
{ lib, ... }: let
sub.options.config = lib.mkOption {
type = lib.types.bool;
default = false;
};
in {
options.submodule = lib.mkOption {
type = lib.types.submoduleWith {
modules = [ sub ];
};
default = {};
};
}