dxvk_1: fix build compatibility with GCC 14 (#360918)
[NixPkgs.git] / lib / tests / modules / declare-submoduleWith-path.nix
blobfa16c12bd2120893006d33ae79f7b20c0f3b55e1
1 { lib, ... }:
3   options.submodule = lib.mkOption {
4     type = lib.types.submoduleWith {
5       modules = [
6         ./declare-enable.nix
7       ];
8     };
9     default = { };
10   };
12   config.submodule = ./define-enable.nix;