1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

services: lightdm: Fix vnc server flag listen-address

* gnu/services/lightdm.scm (lightdm-configuration-file): Fix typo from
‘vnc-server-listen-address’ to ‘listen-address’.

Change-Id: I40d26a5554bf160658e641cc8d3dc212f1364c93
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Fernando Martínez González
2025-02-10 22:04:35 +01:00
committed by Ludovic Courtès
parent 83f839e20f
commit 5a0887ce84

View File

@@ -463,7 +463,7 @@ enabled=" (if vnc-server? "true" "false") "
command=" vnc-server-command "
port=" (number->string vnc-server-port) "\n"
(if (maybe-value-set? vnc-server-listen-address)
(format #f "vnc-server-listen-address=~a" vnc-server-listen-address)
(format #f "listen-address=~a" vnc-server-listen-address)
"") "
#