1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-10-18 14:32:45 -04:00
nix/doc/manual/source/advanced-topics/distributed-builds.md

72 lines
2.4 KiB
Markdown
Raw Normal View History

2020-07-22 17:17:48 -04:00
# Remote Builds
Nix supports remote builds, where a local Nix installation can forward
Nix builds to other machines. This allows multiple builds to be
performed in parallel and allows Nix to perform multi-platform builds in
a semi-transparent way. For instance, if you perform a build for a
`x86_64-darwin` on an `i686-linux` machine, Nix can automatically
forward the build to a `x86_64-darwin` machine, if available.
To forward a build to a remote machine, its required that the remote
machine is accessible via SSH and that it has Nix installed. You can
test whether connecting to the remote Nix instance works, e.g.
2020-07-31 09:43:25 -04:00
```console
$ nix store info --store ssh://mac
2020-07-31 09:43:25 -04:00
```
2020-07-22 17:17:48 -04:00
will try to connect to the machine named `mac`. It is possible to
specify an SSH identity file as part of the remote store URI, e.g.
2020-07-31 09:43:25 -04:00
```console
$ nix store info --store ssh://mac?ssh-key=/home/alice/my-key
2020-07-31 09:43:25 -04:00
```
2020-07-22 17:17:48 -04:00
Since builds should be non-interactive, the key should not have a
passphrase. Alternatively, you can load identities ahead of time into
`ssh-agent` or `gpg-agent`.
If you get the error
2020-07-31 09:43:25 -04:00
```console
bash: nix-store: command not found
error: cannot connect to 'mac'
```
2020-07-22 17:17:48 -04:00
2020-07-23 04:44:54 -04:00
then you need to ensure that the `PATH` of non-interactive login shells
2020-07-22 17:17:48 -04:00
contains Nix.
The [list of remote build machines](@docroot@/command-ref/conf-file.md#conf-builders) can be specified on the command line or in the Nix configuration file.
For example, the following command allows you to build a derivation for `x86_64-darwin` on a Linux machine:
2020-07-22 17:17:48 -04:00
2020-07-31 09:43:25 -04:00
```console
$ uname
Linux
$ nix build --impure \
--expr '(with import <nixpkgs> { system = "x86_64-darwin"; }; runCommand "foo" {} "uname > $out")' \
2020-07-31 09:43:25 -04:00
--builders 'ssh://mac x86_64-darwin'
[1/0/1 built, 0.0 MiB DL] building foo on ssh://mac
$ cat ./result
Darwin
```
2020-07-22 17:17:48 -04:00
It is possible to specify multiple build machines separated by a semicolon or a newline, e.g.
2020-07-22 17:17:48 -04:00
2020-07-31 09:43:25 -04:00
```console
2020-07-22 17:17:48 -04:00
--builders 'ssh://mac x86_64-darwin ; ssh://beastie x86_64-freebsd'
```
Remote build machines can also be configured in [`nix.conf`](@docroot@/command-ref/conf-file.md), e.g.
2020-07-22 17:17:48 -04:00
builders = ssh://mac x86_64-darwin ; ssh://beastie x86_64-freebsd
Finally, remote build machines can be configured in a separate configuration
file included in `builders` via the syntax `@/path/to/file`. For example,
2020-07-22 17:17:48 -04:00
builders = @/etc/nix/machines
causes the list of machines in `/etc/nix/machines` to be included.
(This is the default.)