I want to build a nestjs backend which is used by a angular frontend application. Each of them for now in a single repository. I stumbled over nrwl-nx for monorepo tooling and am really intrigued to use it.
But my question now is: is it possible to have different apps in the workspace, but each as an own git submodule? Like so:
workspace_folder
|- apps
| |- application1 <--- git submodule 1
| |- application2 <--- git submodule 2
|- libs
|...
How would the process be to set them up correctly? Can it be done completely by the nx CLI? I couldn't find anything specific to that in the nx documentation.