#pragma once ///@file #include "store-api.hh" namespace nix { enum struct UseSearchPath { Use, DontUse }; void runProgramInStore(ref store, UseSearchPath useSearchPath, const std::string & program, const Strings & args, std::optional system = std::nullopt); }