1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-20 09:19:36 +01:00

Guard the local overlay store behind an experimental feature

This commit is contained in:
John Ericson 2023-08-02 20:30:42 -04:00
parent 3fc838c8a8
commit 4b9a621812
5 changed files with 19 additions and 3 deletions

View file

@ -56,6 +56,11 @@ struct LocalOverlayStoreConfig : virtual LocalStoreConfig
const std::string name() override { return "Experimental Local Overlay Store"; }
std::optional<ExperimentalFeature> experimentalFeature() const override
{
return ExperimentalFeature::LocalOverlayStore;
}
std::string doc() override
{
return