mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-15 02:36:16 +02:00
doc: don't use bash substitution in install command
This commit is contained in:
parent
3e7b42dd89
commit
b6656160ba
1 changed files with 2 additions and 2 deletions
|
@ -23,7 +23,7 @@ This option requires either:
|
||||||
> when running Nix commands, refer to GitHub issue [NixOS/nix#10892](https://github.com/NixOS/nix/issues/10892) for instructions to fix your installation without reinstalling.
|
> when running Nix commands, refer to GitHub issue [NixOS/nix#10892](https://github.com/NixOS/nix/issues/10892) for instructions to fix your installation without reinstalling.
|
||||||
|
|
||||||
```console
|
```console
|
||||||
$ bash <(curl -L https://nixos.org/nix/install) --daemon
|
$ curl -L https://nixos.org/nix/install | sh -s -- --daemon
|
||||||
```
|
```
|
||||||
|
|
||||||
## Single-user
|
## Single-user
|
||||||
|
@ -36,7 +36,7 @@ cannot offer equivalent sharing, isolation, or security.
|
||||||
This option is suitable for systems without systemd.
|
This option is suitable for systems without systemd.
|
||||||
|
|
||||||
```console
|
```console
|
||||||
$ bash <(curl -L https://nixos.org/nix/install) --no-daemon
|
$ curl -L https://nixos.org/nix/install | sh -s -- --no-daemon
|
||||||
```
|
```
|
||||||
|
|
||||||
## Distributions
|
## Distributions
|
||||||
|
|
Loading…
Reference in a new issue