diff --git a/doc/manual/command-ref/nix-store.xml b/doc/manual/command-ref/nix-store.xml
index bf03c802b..22afdec93 100644
--- a/doc/manual/command-ref/nix-store.xml
+++ b/doc/manual/command-ref/nix-store.xml
@@ -246,6 +246,64 @@ $ nix-build -r '<nixpkgs>' -A hello --check -K
+
+
+Operation
+
+Synopsis
+
+
+ nix-store
+
+
+
+
+
+
+Description
+
+The operation provides access to
+the Nix store over stdin and stdout, and is intended to be used
+as a means of providing Nix store access to a restricted ssh user.
+
+
+The following flags are available:
+
+
+
+
+
+ Allow the connected client to request the realization
+ of derivations. In effect, this can be used to make the host act
+ as a build slave.
+
+
+
+
+
+
+
+
+Examples
+
+To turn a host into a build server, the
+authorized_keys file can be used to provide build
+access to a given SSH public key:
+
+
+$ cat <>/root/.ssh/authorized_keys
+command="nice -n20 nix-store --serve --write" ssh-rsa AAAAB3NzaC1yc2EAAAA...
+EOF
+
+
+
+
+
+
+
+
+
+
Operation