1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00

nix: use-sandbox -> sandbox (#7475)

The Nix configuration file sandbox setting is now "sandbox", not
"use-sandbox".  Correct the documentation and tests that reference this
setting.
This commit is contained in:
Adam Dinwoodie 2025-07-15 16:22:11 +01:00 committed by GitHub
parent 4cc9cc67eb
commit f7a45b0831
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View file

@ -314,7 +314,7 @@ in
default = { };
example = literalExpression ''
{
use-sandbox = true;
sandbox = true;
show-trace = true;
system-features = [ "big-parallel" "kvm" "recursive-nix" ];
}

View file

@ -1,7 +1,7 @@
# WARNING: this file is generated from the nix.settings option in
# your Home Manager configuration at $XDG_CONFIG_HOME/nix/nix.conf.
# Do not edit it!
sandbox = true
show-trace = true
system-features = big-parallel kvm recursive-nix
use-sandbox = true

View file

@ -25,7 +25,7 @@
];
settings = {
use-sandbox = true;
sandbox = true;
show-trace = true;
system-features = [
"big-parallel"