#include "types.hh" #include "flakeref.hh" #include namespace nix { struct FlakeRegistry { struct Entry { FlakeRef ref; }; std::map entries; }; }