diff options
author | wmertens <Wout.Mertens@gmail.com> | 2014-09-24T09·14+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-09-24T09·42+0200 |
commit | e83a027e00f1f5d729e78f3b4c94daa97704d065 (patch) | |
tree | b3a28c179068c9960b8722abf2f1c03bc9788fe3 /doc | |
parent | 13a18ceb44ef6fb2742f16f4ec2ad47b8af56f48 (diff) |
Remove bash requirement
As per https://github.com/NixOS/nixos-homepage/pull/16
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual/quick-start/getting-started.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/manual/quick-start/getting-started.xml b/doc/manual/quick-start/getting-started.xml index a6b1f47b6cf6..3dc79b9b52d5 100644 --- a/doc/manual/quick-start/getting-started.xml +++ b/doc/manual/quick-start/getting-started.xml @@ -9,10 +9,10 @@ <para>This tutorial takes you through the basic tasks you might perform when you start using Nix.</para> <procedure> -<step><para>Install Nix by running the following: +<step><para>Install single-user Nix by running the following: <screen> -$ bash <(curl https://nixos.org/nix/install) +$ curl https://nixos.org/nix/install | sh </screen> This will install Nix in <filename>/nix</filename>. The install script @@ -105,4 +105,4 @@ command actually deletes them.--> </procedure> -</chapter> \ No newline at end of file +</chapter> |