home: dbus: Inherit environment variables from shepherd.

* gnu/home/services/desktop.scm (home-dbus-shepherd-services)[start]
  <#:environment-variables>: Inherit environment variables from shepherd.
This commit is contained in:
Andrew Tropin 2022-10-17 15:49:27 +04:00
parent 6fad3d5985
commit 3ab14386cd
No known key found for this signature in database
GPG key ID: 2208D20958C1DEB0

View file

@ -201,7 +201,8 @@ (define (home-dbus-shepherd-services config)
(format #f "/run/user/~a"
(getuid)))))
#:environment-variables
'("DBUS_VERBOSE=1")
(cons "DBUS_VERBOSE=1"
(default-environment-variables))
#:log-file
(format #f "~a/dbus.log"
(or (getenv "XDG_LOG_HOME")