diff options
author | Jörg Thalheim <joerg@thalheim.io> | 2020-06-23 22:51:09 +0100 |
---|---|---|
committer | Jörg Thalheim <joerg@thalheim.io> | 2020-06-23 23:04:10 +0100 |
commit | 3685f4eec650be473226b9c1623a28ab07d1f918 (patch) | |
tree | 386cdfccaad5d81902cb8512b3802c6d8f3facc5 /doc | |
parent | 015e1c2131de938d61fa50c8df9d3987c42bcb39 (diff) |
docs/installer: add correct curl flags
also see https://nixos.org/download.html
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual/installation/installing-binary.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/manual/installation/installing-binary.xml b/doc/manual/installation/installing-binary.xml index d25c46b85..64c7a37fb 100644 --- a/doc/manual/installation/installing-binary.xml +++ b/doc/manual/installation/installing-binary.xml @@ -97,7 +97,7 @@ $ rm -rf /nix installation on your system: </para> - <screen>sh <(curl https://nixos.org/nix/install) --daemon</screen> + <screen>sh <(curl -L https://nixos.org/nix/install) --daemon</screen> <para> The multi-user installation of Nix will create build users between @@ -178,7 +178,7 @@ sudo rm /Library/LaunchDaemons/org.nixos.nix-daemon.plist is a bit of a misnomer). To use this approach, just install Nix with: </para> - <screen>$ sh <(curl https://nixos.org/nix/install) --darwin-use-unencrypted-nix-store-volume</screen> + <screen>$ sh <(curl -L https://nixos.org/nix/install) --darwin-use-unencrypted-nix-store-volume</screen> <para> If you don't like the sound of this, you'll want to weigh the @@ -429,7 +429,7 @@ LABEL=Nix\040Store /nix apfs rw,nobrowse NixOS.org installation script: <screen> - sh <(curl https://nixos.org/nix/install) + sh <(curl -L https://nixos.org/nix/install) </screen> </para> |