summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2023-01-20 11:33:12 -0500
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2023-01-20 12:32:34 -0500
commit2491a60404b69da20c2b4fd952e5d5e326374d1d (patch)
tree7041540407648749c3767bb7187f49d1eac63655 /doc
parentf00782294a3a1ca53511cddfe4927d87b83e4830 (diff)
doc: Fix Xvnc service example.
Reported by bost on #guix (thank you!) * doc/guix.texi (VNC Services): Add the missing host argument in the SSH command example.
Diffstat (limited to 'doc')
-rw-r--r--doc/guix.texi3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/guix.texi b/doc/guix.texi
index b23f0b3d85..d7e2311a65 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -31481,7 +31481,8 @@ on the remote machine on display number 10, and it could be displayed
locally via the @command{vncviewer} command:
@example
# Start xclock on the remote machine.
-ssh -L5910:localhost:5910 -- guix shell xclock -- env DISPLAY=:10 xclock
+ssh -L5910:localhost:5910 @var{your-host} -- guix shell xclock \
+ -- env DISPLAY=:10 xclock
# Access it via VNC.
guix shell tigervnc-client -- vncviewer localhost:5910
@end example