services: dmd: Provide dmd via 'profile-service-type'.
* gnu/services/dmd.scm (dmd-root-service-type): Extend PROFILE-SERVICE-TYPE. * gnu/system.scm (%base-packages): Remove dmd.
This commit is contained in:
parent
e932d371e5
commit
c273d81bfa
|
@ -1,5 +1,5 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2013, 2014, 2015, 2016 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -88,7 +88,9 @@
|
||||||
;; list of services provided by the extensions.
|
;; list of services provided by the extensions.
|
||||||
(compose concatenate)
|
(compose concatenate)
|
||||||
(extend append)
|
(extend append)
|
||||||
(extensions (list (service-extension boot-service-type dmd-boot-gexp)))))
|
(extensions (list (service-extension boot-service-type dmd-boot-gexp)
|
||||||
|
(service-extension profile-service-type
|
||||||
|
(const (list dmd)))))))
|
||||||
|
|
||||||
(define %dmd-root-service
|
(define %dmd-root-service
|
||||||
;; The root dmd service, aka. PID 1. Its parameter is a list of
|
;; The root dmd service, aka. PID 1. Its parameter is a list of
|
||||||
|
|
|
@ -353,7 +353,7 @@ explicitly appear in OS."
|
||||||
;; Default set of packages globally visible. It should include anything
|
;; Default set of packages globally visible. It should include anything
|
||||||
;; required for basic administrator tasks.
|
;; required for basic administrator tasks.
|
||||||
(cons* procps psmisc which less zile nano
|
(cons* procps psmisc which less zile nano
|
||||||
(@ (gnu packages admin) dmd) guix
|
guix
|
||||||
lsof ;for Guix's 'list-runtime-roots'
|
lsof ;for Guix's 'list-runtime-roots'
|
||||||
pciutils usbutils
|
pciutils usbutils
|
||||||
util-linux inetutils isc-dhcp
|
util-linux inetutils isc-dhcp
|
||||||
|
|
Loading…
Reference in New Issue