Configuring In Process Transport - NimbusAPI/Nimbus GitHub Wiki
You can use an In-Process transport for Nimbus for running as a mediator in a single application or for testing. This won't give you any persistence for message storage.
Install-Package Nimbus.Transports.InProcess
Then you configure the transport and pass it to the Bus Builder.
var transport = new InProcessTransportConfiguration();
var bus = new BusBuilder().Configure()
.WithNames("MyApplication", Environment.MachineName)
.WithTransport(transport)
.WithTypesFrom(typeProvider)
.Build();