diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-05-02 15:32:30 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-05-02 15:32:30 +0200 |
commit | 746ac457cc2748152a3a39d4296972fa20f19741 (patch) | |
tree | 978f3bdb71cfd062df8da9be7ae0218d214626e1 /gnu/services/desktop.scm | |
parent | c457f109bec75bfbf4619f3e18bcd82c33a15c07 (diff) | |
parent | 3a3e9f2bb586e79a7931163f0191df61591b8017 (diff) | |
download | patches-746ac457cc2748152a3a39d4296972fa20f19741.tar patches-746ac457cc2748152a3a39d4296972fa20f19741.tar.gz |
Merge branch 'version-1.0.0'
Diffstat (limited to 'gnu/services/desktop.scm')
-rw-r--r-- | gnu/services/desktop.scm | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/gnu/services/desktop.scm b/gnu/services/desktop.scm index f31dbc112e..5e0bd102a2 100644 --- a/gnu/services/desktop.scm +++ b/gnu/services/desktop.scm @@ -84,6 +84,7 @@ udisks-service udisks-service-type + colord-service-type colord-service geoclue-application @@ -93,6 +94,9 @@ geoclue-service geoclue-service-type + bluetooth-service-type + bluetooth-configuration + bluetooth-configuration? bluetooth-service elogind-configuration @@ -452,7 +456,9 @@ site} for more information." `(("bluetooth" ,(bluetooth-directory config))))) (service-extension shepherd-root-service-type - (compose list bluetooth-shepherd-service)))))) + (compose list bluetooth-shepherd-service)))) + (description "Run the @command{bluetoothd} daemon, which manages all the +Bluetooth devices and provides a number of D-Bus interfaces."))) (define* (bluetooth-service #:key (bluez bluez) (auto-enable? #f)) "Return a service that runs the @command{bluetoothd} daemon, which manages @@ -506,7 +512,11 @@ Users need to be in the @code{lp} group to access the D-Bus service. (service-extension udev-service-type list) ;; It provides polkit "actions". - (service-extension polkit-service-type list))))) + (service-extension polkit-service-type list))) + (description + "Run @command{colord}, a system service with a D-Bus +interface to manage the color profiles of input and output devices such as +screens and scanners."))) (define* (colord-service #:key (colord colord)) "Return a service that runs @command{colord}, a system service with a D-Bus |