mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 21:59:08 -05:00
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.
This commit is contained in:
parent
5dd0d1f8b3
commit
7614193099
1 changed files with 6 additions and 1 deletions
|
@ -93,6 +93,9 @@ (define-module (gnu services desktop)
|
||||||
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 @@ (define bluetooth-service-type
|
||||||
`(("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
|
||||||
|
|
Loading…
Reference in a new issue