Skip to content

Commit

Permalink
Merge pull request #7607 from Hoverbear/installation-expand
Browse files Browse the repository at this point in the history
Expand installation.md
  • Loading branch information
edolstra committed Feb 2, 2023
2 parents b574c70 + 763c1df commit 5cbeff6
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 8 deletions.
40 changes: 38 additions & 2 deletions doc/manual/src/installation/installation.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,38 @@
This section describes how to install and configure Nix for first-time
use.
# Installation

This section describes how to install and configure Nix for first-time use.

The current recommended option on Linux and MacOS is [multi-user](#multi-user).

## Multi-user

This installation offers better sharing, improved isolation, and more security
over a single user installation.

This option requires either:

* Linux running systemd, with SELinux disabled
* MacOS

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

## Single-user

> Single-user is not supported on Mac.
This installation has less requirements than the multi-user install, however it
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
```

## Distributions

The Nix community maintains installers for several distributions.

They can be found in the [`nix-community/nix-installers`](https://github.com/nix-community/nix-installers) repository.
12 changes: 6 additions & 6 deletions doc/manual/src/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ This chapter is for impatient people who don't like reading
documentation. For more in-depth information you are kindly referred
to subsequent chapters.

1. Install single-user Nix by running the following:
1. Install Nix by running the following:

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

This will install Nix in `/nix`. The install script will create
`/nix` using `sudo`, so make sure you have sufficient rights. (For
other installation methods, see
[here](installation/installation.md).)
The install script will use `sudo`, so make sure you have sufficient rights.
On Linux, `--daemon` can be omitted for a single-user install.

For other installation methods, see [here](installation/installation.md).

1. See what installable packages are currently available in the
channel:
Expand Down

0 comments on commit 5cbeff6

Please sign in to comment.