summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntero Mejr <mail@antr.me>2024-09-16 14:38:05 +0000
committerGuix Patches Tester <>2024-09-18 12:17:12 +0200
commita7fd8efeed1bd2b41730ab5d8029c3a55f6284c4 (patch)
tree96b80d35e35c415dc34281ebad26c2c062436428
parent4b7bb05c29d390fb095f7a96e83c54efa8379497 (diff)
downloadguix-patches-issue-73296.tar
guix-patches-issue-73296.tar.gz
home: services: dbus: Add utilities to profile.issue-73296
* gnu/home/services/desktop.scm (home-dbus-service-type)[extensions]: Extend home-profile-service-type to add dbus-launch and other such utilities to the home profile. Change-Id: I9a3dc00d52b66c327f4eae523bddf758bddddb9e
-rw-r--r--gnu/home/services/desktop.scm5
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/home/services/desktop.scm b/gnu/home/services/desktop.scm
index 679ba31c0f..6d8ac275ca 100644
--- a/gnu/home/services/desktop.scm
+++ b/gnu/home/services/desktop.scm
@@ -327,7 +327,10 @@ according to time of day.")))
(list (service-extension home-shepherd-service-type
home-dbus-shepherd-services)
(service-extension home-environment-variables-service-type
- home-dbus-environment-variables)))
+ home-dbus-environment-variables)
+ (service-extension home-profile-service-type
+ (lambda (config)
+ (list (home-dbus-dbus config))))))
(default-value (home-dbus-configuration))
(description
"Run the session-specific D-Bus inter-process message bus.")))