mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 00:08:07 +02:00
enable Xp::FetchTree by default
This commit is contained in:
parent
61feb89177
commit
cb968c096f
2 changed files with 2 additions and 0 deletions
|
@ -25,6 +25,7 @@ The following experimental features are enabled by default:
|
||||||
- `flakes` (`Xp::Flakes`)
|
- `flakes` (`Xp::Flakes`)
|
||||||
- `nix-command` (`Xp::NixCommand`)
|
- `nix-command` (`Xp::NixCommand`)
|
||||||
- `repl-flake` (`Xp::ReplFlake`)
|
- `repl-flake` (`Xp::ReplFlake`)
|
||||||
|
- `fetch-tree` (`Xp::FetchTree`)
|
||||||
|
|
||||||
### Full thunk evaluation in `flake.nix`
|
### Full thunk evaluation in `flake.nix`
|
||||||
|
|
||||||
|
|
|
@ -510,6 +510,7 @@ bool ExperimentalFeatureSettings::isEnabled(const ExperimentalFeature & feature)
|
||||||
case ExperimentalFeature::Flakes:
|
case ExperimentalFeature::Flakes:
|
||||||
case ExperimentalFeature::NixCommand:
|
case ExperimentalFeature::NixCommand:
|
||||||
case ExperimentalFeature::ReplFlake:
|
case ExperimentalFeature::ReplFlake:
|
||||||
|
case ExperimentalFeature::FetchTree:
|
||||||
return true;
|
return true;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue