aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/ssh-store.cc
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2023-03-23 09:35:35 +0100
committerEelco Dolstra <edolstra@gmail.com>2023-03-23 09:35:35 +0100
commit80f0b8d3070f346bb89bd0ab1a541940a7ceeec1 (patch)
treee61753cc3ddd83c89f5995125a047addce304e0c /src/libstore/ssh-store.cc
parentb134546f08000ce80722fdc4de58ac5fd20865ed (diff)
Fix SSHStore
Diffstat (limited to 'src/libstore/ssh-store.cc')
-rw-r--r--src/libstore/ssh-store.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libstore/ssh-store.cc b/src/libstore/ssh-store.cc
index be8a67c13..962221ad2 100644
--- a/src/libstore/ssh-store.cc
+++ b/src/libstore/ssh-store.cc
@@ -14,6 +14,9 @@ struct SSHStoreConfig : virtual RemoteStoreConfig, virtual CommonSSHStoreConfig
using RemoteStoreConfig::RemoteStoreConfig;
using CommonSSHStoreConfig::CommonSSHStoreConfig;
+ const Setting<Path> remoteProgram{(StoreConfig*) this, "nix-daemon", "remote-program",
+ "Path to the `nix-daemon` executable on the remote machine."};
+
const std::string name() override { return "Experimental SSH Store"; }
std::string doc() override