diff options
Diffstat (limited to 'gnu/installer/services.scm')
-rw-r--r-- | gnu/installer/services.scm | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gnu/installer/services.scm b/gnu/installer/services.scm index 341d8b69c8..6584fcceec 100644 --- a/gnu/installer/services.scm +++ b/gnu/installer/services.scm @@ -3,6 +3,7 @@ ;;; Copyright © 2019 Ludovic Courtès <[email protected]> ;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <[email protected]> ;;; Copyright © 2021 Tobias Geerinckx-Rice <[email protected]> +;;; Copyright © 2021 Leo Famulari <[email protected]> ;;; ;;; This file is part of GNU Guix. ;;; @@ -104,6 +105,17 @@ (packages '((specification->package "nss-certs"))) (recommended? #t)) + ;; Miscellaneous system administration services. + (system-service + (name (G_ "Network time service (NTP), to set the clock automatically")) + (type 'administration) + (recommended? #t) + (snippet '((service ntp-service-type)))) + (system-service + (name (G_ "GPM mouse daemon, to use the mouse on the console")) + (type 'administration) + (snippet '((service gpm-service-type)))) + ;; Network connectivity management. (system-service (name (G_ "NetworkManager network connection manager")) |