1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-27 08:31:16 +02:00

Support per-store Markdown documentation

This commit is contained in:
Eelco Dolstra 2023-03-21 14:03:05 +01:00
parent 7704118d28
commit 9eb53bbf17
20 changed files with 181 additions and 4 deletions

View file

@ -18,7 +18,14 @@ struct SSHStoreConfig : virtual RemoteStoreConfig
const Setting<Path> remoteProgram{(StoreConfig*) this, "nix-daemon", "remote-program", "path to the nix-daemon executable on the remote system"};
const Setting<std::string> remoteStore{(StoreConfig*) this, "", "remote-store", "URI of the store on the remote system"};
const std::string name() override { return "SSH Store"; }
const std::string name() override { return "Experimental SSH Store"; }
std::string doc() override
{
return
#include "ssh-store.md"
;
}
};
class SSHStore : public virtual SSHStoreConfig, public virtual RemoteStore