services: %rosenthal-desktop-home-services: Replace home-dbus-service-type.

* modules/rosenthal/services/desktop.scm (%rosenthal-desktop-home-services):
Replace home-dbus-service-type.
This commit is contained in:
Hilton Chain 2026-02-04 21:44:27 +08:00
parent 6c67cac50f
commit c2003fa60c
No known key found for this signature in database
GPG Key ID: ACC66D09CA528292

View File

@ -727,7 +727,17 @@ configuration {
(auto-start? #f) (auto-start? #f)
(daemonize? #f))) (daemonize? #f)))
(service home-dbus-service-type) ;; NOTE: The environment variable set by home-dbus-service-type will
;; prevent GNOME from starting when using above Shepherd configuration.
;; Replace home-dbus-service-type, expecting the session bus will be
;; started elsewhere. See also:
;; https://codeberg.org/guix/guix/issues/5899#issuecomment-10208485
(simple-service 'dbus home-shepherd-service-type
(list (shepherd-service
(provision '(dbus))
(start #~(const #t))
(stop #~(const #f)))))
(service home-pipewire-service-type) (service home-pipewire-service-type)
%base-home-services)) %base-home-services))