diff mbox series

[bug#73296] home: services: dbus: Add utilities to profile.

Message ID 87zfo7r828.fsf@antr.me
State New
Headers show
Series [bug#73296] home: services: dbus: Add utilities to profile. | expand

Commit Message

Antero Mejr Sept. 16, 2024, 2:23 p.m. UTC
* gnu/home/services/sound.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
---
 gnu/home/services/desktop.scm | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)


base-commit: ecc95ecd399ce7917a19ae3e687ea1a92caf830a
diff mbox series

Patch

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 @@  (define home-dbus-service-type
     (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.")))