vuls: init at 0.27.0
[NixPkgs.git] / lib / tests / modules / declare-submoduleWith-path.nix
blob477647f32121123abde74b0aca2ee56c7f2c8b15
1 { lib, ... }: {
2   options.submodule = lib.mkOption {
3     type = lib.types.submoduleWith {
4       modules = [
5         ./declare-enable.nix
6       ];
7     };
8     default = {};
9   };
11   config.submodule = ./define-enable.nix;