summaryrefslogtreecommitdiff
path: root/gnu/home
diff options
context:
space:
mode:
author( <paren@disroot.org>2022-10-13 07:48:25 +0100
committerAndrew Tropin <andrew@trop.in>2022-10-14 11:06:07 +0400
commit27c4f396b75502a4345e443d0d621f5af2a82831 (patch)
treeae132e317398b4399fe76e292befdc0c77c4077f /gnu/home
parentcfd74630dd37325abdfe5e72d6ce6b517faf5562 (diff)
home: home-dbus-service-type: Fix make-forkexec-constructor call.
* gnu/home/services/desktop.scm (home-dbus-shepherd-services)[start] <#:environment-variables>: Use a quote instead of a gexp. Signed-off-by: Andrew Tropin <andrew@trop.in>
Diffstat (limited to 'gnu/home')
-rw-r--r--gnu/home/services/desktop.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/home/services/desktop.scm b/gnu/home/services/desktop.scm
index 6549efd8df..e94e666d93 100644
--- a/gnu/home/services/desktop.scm
+++ b/gnu/home/services/desktop.scm
@@ -201,7 +201,7 @@ according to time of day.")))
(format #f "/run/user/~a"
(getuid)))))
#:environment-variables
- #~(list "DBUS_VERBOSE=1")
+ '(list "DBUS_VERBOSE=1")
#:log-file
(format #f "~a/dbus.log"
(or (getenv "XDG_LOG_HOME")