1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-21 23:40:24 -04:00
nix/doc/manual/src/installation/multi-user.md

78 lines
2.7 KiB
Markdown
Raw Normal View History

2020-07-22 17:17:48 -04:00
# Multi-User Mode
To allow a Nix store to be shared safely among multiple users, it is
important that users are not able to run builders that modify the Nix
store or database in arbitrary ways, or that interfere with builds
started by other users. If they could do so, they could install a Trojan
horse in some package and compromise the accounts of other users.
To prevent this, the Nix store and database are owned by some privileged
user (usually `root`) and builders are executed under special user
accounts (usually named `nixbld1`, `nixbld2`, etc.). When a unprivileged
user runs a Nix command, actions that operate on the Nix store (such as
builds) are forwarded to a *Nix daemon* running under the owner of the
Nix store/database that performs the operation.
> **Note**
>
> Multi-user mode has one important limitation: only root and a set of
> trusted users specified in `nix.conf` can specify arbitrary binary
> caches. So while unprivileged users may install packages from
> arbitrary Nix expressions, they may not get pre-built binaries.
## Setting up the build users
2020-07-22 17:17:48 -04:00
The *build users* are the special UIDs under which builds are performed.
They should all be members of the *build users group* `nixbld`. This
group should have no other members. The build users should not be
members of any other group. On Linux, you can create the group and users
as follows:
2020-07-31 09:43:25 -04:00
```console
$ groupadd -r nixbld
$ for n in $(seq 1 10); do useradd -c "Nix build user $n" \
-d /var/empty -g nixbld -G nixbld -M -N -r -s "$(which nologin)" \
nixbld$n; done
```
2020-07-22 17:17:48 -04:00
This creates 10 build users. There can never be more concurrent builds
than the number of build users, so you may want to increase this if you
expect to do many builds at the same time.
## Running the daemon
2020-07-24 09:46:16 -04:00
The [Nix daemon](../command-ref/nix-daemon.md) should be started as
follows (as `root`):
2020-07-22 17:17:48 -04:00
2020-07-31 09:43:25 -04:00
```console
$ nix-daemon
```
2020-07-22 17:17:48 -04:00
Youll want to put that line somewhere in your systems boot scripts.
To let unprivileged users use the daemon, they should set the
2020-07-24 09:46:16 -04:00
[`NIX_REMOTE` environment variable](../command-ref/env-common.md) to
`daemon`. So you should put a line like
2020-07-22 17:17:48 -04:00
2020-07-31 09:43:25 -04:00
```console
export NIX_REMOTE=daemon
```
2020-07-22 17:17:48 -04:00
into the users login scripts.
## Restricting access
2020-07-22 17:17:48 -04:00
To limit which users can perform Nix operations, you can use the
permissions on the directory `/nix/var/nix/daemon-socket`. For instance,
if you want to restrict the use of Nix to the members of a group called
`nix-users`, do
2020-07-31 09:43:25 -04:00
```console
$ chgrp nix-users /nix/var/nix/daemon-socket
$ chmod ug=rwx,o= /nix/var/nix/daemon-socket
```
2020-07-22 17:17:48 -04:00
This way, users who are not in the `nix-users` group cannot connect to
the Unix domain socket `/nix/var/nix/daemon-socket/socket`, so they
cannot perform Nix operations.