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:
parent
7704118d28
commit
9eb53bbf17
20 changed files with 181 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue