services: dbus, polkit: Add default value.
* gnu/services/dbus.scm (dbus-root-service-type)[default-value]: New field. (polkit-service-type)[default-value]: New field.
This commit is contained in:
parent
638e9deaf8
commit
3e8d037b16
@ -1,5 +1,5 @@
|
|||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2013, 2014, 2015, 2016 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2013, 2014, 2015, 2016, 2017 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;; Copyright © 2015 Sou Bunnbu <iyzsong@gmail.com>
|
;;; Copyright © 2015 Sou Bunnbu <iyzsong@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
@ -205,7 +205,9 @@ includes the @code{etc/dbus-1/system.d} directories of each package listed in
|
|||||||
(inherit config)
|
(inherit config)
|
||||||
(services
|
(services
|
||||||
(append (dbus-configuration-services config)
|
(append (dbus-configuration-services config)
|
||||||
services)))))))
|
services)))))
|
||||||
|
|
||||||
|
(default-value (dbus-configuration))))
|
||||||
|
|
||||||
(define* (dbus-service #:key (dbus dbus) (services '()))
|
(define* (dbus-service #:key (dbus dbus) (services '()))
|
||||||
"Return a service that runs the \"system bus\", using @var{dbus}, with
|
"Return a service that runs the \"system bus\", using @var{dbus}, with
|
||||||
@ -297,7 +299,9 @@ and policy files. For example, to allow avahi-daemon to use the system bus,
|
|||||||
(inherit config)
|
(inherit config)
|
||||||
(actions
|
(actions
|
||||||
(append (polkit-configuration-actions config)
|
(append (polkit-configuration-actions config)
|
||||||
actions)))))))
|
actions)))))
|
||||||
|
|
||||||
|
(default-value (polkit-configuration))))
|
||||||
|
|
||||||
(define* (polkit-service #:key (polkit polkit))
|
(define* (polkit-service #:key (polkit polkit))
|
||||||
"Return a service that runs the
|
"Return a service that runs the
|
||||||
|
Loading…
Reference in New Issue
Block a user