services: bluetooth: Make public and searchable.
Until now 'guix system search bluetooth' would turn up nothing. * gnu/services/desktop.scm (bluetooth-service-type) (bluetooth-configuration): Make public. (bluetooth-service-type)[description]: New field.master
parent
5dd0d1f8b3
commit
7614193099
|
@ -93,6 +93,9 @@
|
||||||
geoclue-service
|
geoclue-service
|
||||||
geoclue-service-type
|
geoclue-service-type
|
||||||
|
|
||||||
|
bluetooth-service-type
|
||||||
|
bluetooth-configuration
|
||||||
|
bluetooth-configuration?
|
||||||
bluetooth-service
|
bluetooth-service
|
||||||
|
|
||||||
elogind-configuration
|
elogind-configuration
|
||||||
|
@ -452,7 +455,9 @@ site} for more information."
|
||||||
`(("bluetooth"
|
`(("bluetooth"
|
||||||
,(bluetooth-directory config)))))
|
,(bluetooth-directory config)))))
|
||||||
(service-extension shepherd-root-service-type
|
(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))
|
(define* (bluetooth-service #:key (bluez bluez) (auto-enable? #f))
|
||||||
"Return a service that runs the @command{bluetoothd} daemon, which manages
|
"Return a service that runs the @command{bluetoothd} daemon, which manages
|
||||||
|
|
Reference in New Issue