1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-07 10:11:47 +02:00

Add experimental-features setting

Experimental features are now opt-in. There is currently one
experimental feature: "nix-command" (which enables the "nix"
command. This will allow us to merge experimental features more
quickly, without committing to supporting them indefinitely.

Typical usage:

$ nix build --experimental-features 'nix-command flakes' nixpkgs#hello

(cherry picked from commit 8e478c2341,
without the "flakes" feature)
This commit is contained in:
Eelco Dolstra 2019-10-16 17:45:09 +02:00
parent 389a2cebed
commit aabf5c86c9
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE
4 changed files with 15 additions and 0 deletions

View file

@ -17,6 +17,7 @@ cat > "$NIX_CONF_DIR"/nix.conf <<EOF
build-users-group =
keep-derivations = false
sandbox = false
experimental-features = nix-command
include nix.conf.extra
EOF