forked from lix-project/lix
Add the MountedSSHStore
experimental feature
It will be implemented in the subsequent commits of this PR.
This commit is contained in:
parent
9cd69e1c39
commit
949f5841f8
|
@ -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",
|
||||||
|
|
|
@ -34,6 +34,7 @@ enum struct ExperimentalFeature
|
||||||
ParseTomlTimestamps,
|
ParseTomlTimestamps,
|
||||||
ReadOnlyLocalStore,
|
ReadOnlyLocalStore,
|
||||||
ConfigurableImpureEnv,
|
ConfigurableImpureEnv,
|
||||||
|
MountedSSHStore,
|
||||||
VerifiedFetches,
|
VerifiedFetches,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue