diff --git a/src/nix/copy.cc b/src/nix/copy.cc
index fe963e7942771009e5b351f946c7bfc12b98e74e..bf9ffe75569f9cc7d8f2bb87e8934b27f3280402 100644
--- a/src/nix/copy.cc
+++ b/src/nix/copy.cc
@@ -39,9 +39,17 @@ struct CmdCopy : StorePathsCommand
     {
         return {
             Example{
-                "To copy Firefox to the local store to a binary cache in file:///tmp/cache:",
+                "To copy Firefox from the local store to a binary cache in file:///tmp/cache:",
                 "nix copy --to file:///tmp/cache -r $(type -p firefox)"
             },
+            Example{
+                "To copy the entire current NixOS system closure to another machine via SSH:",
+                "nix copy --to ssh://server -r /run/current-system"
+            },
+            Example{
+                "To copy a closure from another machine via SSH:",
+                "nix copy --from ssh://server -r /nix/store/a6cnl93nk1wxnq84brbbwr6hxw9gp2w9-blender-2.79-rc2"
+            },
         };
     }