Skip to content

Commit

Permalink
Merge pull request #11626 from fricklerhandwerk/nix-install-instruction
Browse files Browse the repository at this point in the history
doc: don't use bash substitution in install command
  • Loading branch information
fricklerhandwerk authored Oct 1, 2024
2 parents 3e7b42d + b665616 commit 96ba7f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/manual/src/installation/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
```console
$ bash <(curl -L https://nixos.org/nix/install) --daemon
$ curl -L https://nixos.org/nix/install | sh -s -- --daemon
```
## Single-user
Expand All @@ -36,7 +36,7 @@ cannot offer equivalent sharing, isolation, or security.
This option is suitable for systems without systemd.

```console
$ bash <(curl -L https://nixos.org/nix/install) --no-daemon
$ curl -L https://nixos.org/nix/install | sh -s -- --no-daemon
```

## Distributions
Expand Down

0 comments on commit 96ba7f9

Please sign in to comment.