aboutsummaryrefslogtreecommitdiff
path: root/gnu/home
diff options
context:
space:
mode:
authorAndrew Tropin <andrew@trop.in>2022-10-17 15:49:27 +0400
committerAndrew Tropin <andrew@trop.in>2022-10-17 15:49:27 +0400
commit3ab14386cd2a3fc4bacf2291ee585a0685aceb17 (patch)
treeedbcf9e84f5f0cad08b2fd46d355b6a9757b6ef9 /gnu/home
parent6fad3d5985f46ce19672c902fc93e0f91c3fb8f2 (diff)
downloadguix-3ab14386cd2a3fc4bacf2291ee585a0685aceb17.tar
guix-3ab14386cd2a3fc4bacf2291ee585a0685aceb17.tar.gz
home: dbus: Inherit environment variables from shepherd.
* gnu/home/services/desktop.scm (home-dbus-shepherd-services)[start] <#:environment-variables>: Inherit environment variables from shepherd.
Diffstat (limited to 'gnu/home')
-rw-r--r--gnu/home/services/desktop.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/home/services/desktop.scm b/gnu/home/services/desktop.scm
index a2ab2b4d07..1ebfb14f3c 100644
--- a/gnu/home/services/desktop.scm
+++ b/gnu/home/services/desktop.scm
@@ -201,7 +201,8 @@ according to time of day.")))
(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")