doc: Add services to the configuration template.
* gnu/system/os-config.tmpl (services): New field.
This commit is contained in:
parent
dd6b28d18b
commit
53a7a01675
|
@ -1,6 +1,8 @@
|
||||||
;; This is an operating system configuration template.
|
;; This is an operating system configuration template.
|
||||||
|
|
||||||
(use-modules (gnu))
|
(use-modules (gnu))
|
||||||
|
(use-service-modules xorg networking dbus avahi)
|
||||||
|
(use-package-modules avahi)
|
||||||
|
|
||||||
(operating-system
|
(operating-system
|
||||||
(host-name "antelope")
|
(host-name "antelope")
|
||||||
|
@ -31,4 +33,12 @@
|
||||||
;; and access the webcam.
|
;; and access the webcam.
|
||||||
(supplementary-groups '("wheel"
|
(supplementary-groups '("wheel"
|
||||||
"audio" "video"))
|
"audio" "video"))
|
||||||
(home-directory "/home/alice")))))
|
(home-directory "/home/alice"))))
|
||||||
|
|
||||||
|
;; Add services to the baseline: the SLiM log-in manager
|
||||||
|
;; for Xorg sessions, a DHCP client, Avahi, and D-Bus.
|
||||||
|
(services (cons* (slim-service)
|
||||||
|
(dhcp-client-service)
|
||||||
|
(avahi-service)
|
||||||
|
(dbus-service (list avahi))
|
||||||
|
%base-services)))
|
||||||
|
|
Loading…
Reference in New Issue