ObjectStoreDirectoryService fails with nar bridge

#419
Opened by sinavir at 2024-09-16T19·08+00

ObjectStoreDirectoryService fails with nar bridge because the implementation of get in object store directory service only works for root nodes. The nar renderer doesn't use the get_recursive method but a custom walker (https://code.tvl.fyi/tree/tvix/store/src/nar/renderer.rs#n113) thus failing retrieving lower nodes.

I see 2 ways to fix that:

I believe the first way is the one to implement