I'm trying to include a Datastore with Datastore preferences into a project with Android and Room. I'm trying to follow the clean architecture guide that defines a Repository class as a mediator between the data layer and the UI layer, like this:

Then, my repository class now only contains references to the Room database.
When adding my DataStore preferences, i should reference it into this unique repository class, o it must be referenced into a new repository class?