enable Xp::FetchTree by default

This commit is contained in:
Max Headroom 2023-12-06 00:14:13 +01:00
parent 61feb89177
commit cb968c096f
2 changed files with 2 additions and 0 deletions

View file

@ -25,6 +25,7 @@ The following experimental features are enabled by default:
- `flakes` (`Xp::Flakes`)
- `nix-command` (`Xp::NixCommand`)
- `repl-flake` (`Xp::ReplFlake`)
- `fetch-tree` (`Xp::FetchTree`)
### Full thunk evaluation in `flake.nix`

View file

@ -510,6 +510,7 @@ bool ExperimentalFeatureSettings::isEnabled(const ExperimentalFeature & feature)
case ExperimentalFeature::Flakes:
case ExperimentalFeature::NixCommand:
case ExperimentalFeature::ReplFlake:
case ExperimentalFeature::FetchTree:
return true;
default:
break;