diff options
author | Théophane Hufschmitt <7226587+thufschmitt@users.noreply.github.com> | 2022-08-02 07:17:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-02 07:17:09 +0200 |
commit | 780a4793866b2cac1040d522df514645d01c492f (patch) | |
tree | ecb1827eaec2dba3e487733f2a123354c2c352d7 /doc/manual/src | |
parent | e9178d7d4a9d3f689f911440fa71f135e55b570b (diff) | |
parent | f675ba53310f1bfbe6e9867184b3a5177532b370 (diff) |
Merge pull request #6851 from K900/patch-1
doc/distributed-builds: don't use deprecated alias
Diffstat (limited to 'doc/manual/src')
-rw-r--r-- | doc/manual/src/advanced-topics/distributed-builds.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/manual/src/advanced-topics/distributed-builds.md b/doc/manual/src/advanced-topics/distributed-builds.md index b0d7fbf1a..fefd10100 100644 --- a/doc/manual/src/advanced-topics/distributed-builds.md +++ b/doc/manual/src/advanced-topics/distributed-builds.md @@ -12,14 +12,14 @@ machine is accessible via SSH and that it has Nix installed. You can test whether connecting to the remote Nix instance works, e.g. ```console -$ nix ping-store --store ssh://mac +$ nix store ping --store ssh://mac ``` 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. ```console -$ nix ping-store --store ssh://mac?ssh-key=/home/alice/my-key +$ nix store ping --store ssh://mac?ssh-key=/home/alice/my-key ``` Since builds should be non-interactive, the key should not have a |