summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorBenjamin Asbach <asbachb@users.noreply.github.com>2019-09-18 00:28:15 +0200
committerBenjamin Asbach <asbachb@users.noreply.github.com>2019-09-19 00:27:38 +0200
commitf343b11914c73fb44b4a4cc543fdcf96f8306456 (patch)
tree421a23e6424a5b966e53ca1237bce4698f4e57e0 /doc
parent58f090cc7b92edfee8c390b5a131a1417273c590 (diff)
downloadnixpkgs-f343b11914c73fb44b4a4cc543fdcf96f8306456.tar
nixpkgs-f343b11914c73fb44b4a4cc543fdcf96f8306456.tar.gz
nixpkgs-f343b11914c73fb44b4a4cc543fdcf96f8306456.tar.bz2
nixpkgs-f343b11914c73fb44b4a4cc543fdcf96f8306456.tar.lz
nixpkgs-f343b11914c73fb44b4a4cc543fdcf96f8306456.tar.xz
nixpkgs-f343b11914c73fb44b4a4cc543fdcf96f8306456.tar.zst
nixpkgs-f343b11914c73fb44b4a4cc543fdcf96f8306456.zip
doc: replaced outdated config reference `build-use-sandbox` with `sandbox`
Diffstat (limited to 'doc')
-rw-r--r--doc/submitting-changes.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/submitting-changes.xml b/doc/submitting-changes.xml
index 9c98abbe87a..2c7defb8174 100644
--- a/doc/submitting-changes.xml
+++ b/doc/submitting-changes.xml
@@ -244,7 +244,7 @@ Additional information.
 
    <para>
     When sandbox builds are enabled, Nix will setup an isolated environment for each build process. It is used to remove further hidden dependencies set by the build environment to improve reproducibility. This includes access to the network during the build outside of <function>fetch*</function> functions and files outside the Nix store. Depending on the operating system access to other resources are blocked as well (ex. inter process communication is isolated on Linux); see <link
-      xlink:href="https://nixos.org/nix/manual/#description-45">build-use-sandbox</link> in Nix manual for details.
+      xlink:href="https://nixos.org/nix/manual/#conf-sandbox">sandbox</link> in Nix manual for details.
    </para>
 
    <para>
@@ -265,7 +265,7 @@ Additional information.
      <listitem>
       <para>
        <emphasis role="bold">Globally enable sandboxing on non-NixOS platforms</emphasis>: add the following to: <filename>/etc/nix/nix.conf</filename>
-<screen>build-use-sandbox = true</screen>
+<screen>sandbox = true</screen>
       </para>
      </listitem>
     </itemizedlist>