diff options
author | Doron Behar <doron.behar@gmail.com> | 2023-05-29 18:17:29 +0300 |
---|---|---|
committer | Valentin Gagarin <valentin.gagarin@tweag.io> | 2023-05-31 01:28:15 +0200 |
commit | 76287a9207ce9b0fbab7ae49f6fa405f0c1ef9ab (patch) | |
tree | cfa9d82eae40016f6d5c47d4a509507c4eae3198 /doc/manual/src/advanced-topics | |
parent | 61ddfa154bcfa522819781d23e40e984f38dfdeb (diff) |
distributed-builds.md: Clarify warning ssh access requirements
Diffstat (limited to 'doc/manual/src/advanced-topics')
-rw-r--r-- | doc/manual/src/advanced-topics/distributed-builds.md | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/manual/src/advanced-topics/distributed-builds.md b/doc/manual/src/advanced-topics/distributed-builds.md index fefd10100..8f61380e8 100644 --- a/doc/manual/src/advanced-topics/distributed-builds.md +++ b/doc/manual/src/advanced-topics/distributed-builds.md @@ -39,10 +39,11 @@ contains Nix. > **Warning** > > If you are building via the Nix daemon, it is the Nix daemon user -> account (that is, `root`) that should have SSH access to the remote +> account (that is, `root`) that should have SSH access to a user (not necessarily `root`) on the remote > machine. If you can’t or don’t want to configure `root` to be able to -> access to remote machine, you can use a private Nix store instead by -> passing e.g. `--store ~/my-nix`. +> access the remote machine, you can use a private Nix store instead by +> passing e.g. `--store ~/my-nix` when running a nix command from the +> local machine. The list of remote machines can be specified on the command line or in the Nix configuration file. The former is convenient for testing. For |