Add the MountedSSHStore experimental feature

It will be implemented in the subsequent commits of this PR.
This commit is contained in:
John Ericson 2023-11-21 13:12:55 -05:00
parent 9cd69e1c39
commit 949f5841f8
2 changed files with 8 additions and 0 deletions

View file

@ -262,6 +262,13 @@ constexpr std::array<ExperimentalFeatureDetails, numXpFeatures> xpFeatureDetails
Allow the use of the [impure-env](@docroot@/command-ref/conf-file.md#conf-impure-env) setting. Allow the use of the [impure-env](@docroot@/command-ref/conf-file.md#conf-impure-env) setting.
)", )",
}, },
{
.tag = Xp::MountedSSHStore,
.name = "mounted-ssh-store",
.description = R"(
Allow the use of the [`mounted SSH store`](@docroot@/command-ref/new-cli/nix3-help-stores.html#experimental-ssh-store-with-filesytem-mounted).
)",
},
{ {
.tag = Xp::VerifiedFetches, .tag = Xp::VerifiedFetches,
.name = "verified-fetches", .name = "verified-fetches",

View file

@ -34,6 +34,7 @@ enum struct ExperimentalFeature
ParseTomlTimestamps, ParseTomlTimestamps,
ReadOnlyLocalStore, ReadOnlyLocalStore,
ConfigurableImpureEnv, ConfigurableImpureEnv,
MountedSSHStore,
VerifiedFetches, VerifiedFetches,
}; };