core/lib/tests/modules/declare-bare-submodule-nested-option.nix
2024-05-01 18:26:04 -04:00

20 lines
371 B
Nix

{ config, lib, ... }:
let
inherit (lib) mkOption types;
in
{
options.bare-submodule = mkOption {
type = types.submoduleWith {
shorthandOnlyDefinesConfig = config.shorthandOnlyDefinesConfig;
modules = [
{
options.nested = mkOption {
type = types.int;
default = 1;
};
}
];
};
};
}