guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

05/06: gnu: %base-services: Use *getty-service-type.


From: guix-commits
Subject: 05/06: gnu: %base-services: Use *getty-service-type.
Date: Sun, 20 Jan 2019 09:24:32 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit 76a2b2db1a5c6a68be994712e5273b2ac4e4c82a
Author: Efraim Flashner <address@hidden>
Date:   Sun Jan 20 15:25:45 2019 +0200

    gnu: %base-services: Use *getty-service-type.
    
    * gnu/services/base.scm (%base-services): Replace agetty-service with
    agetty-service-type, mingetty-service with mingetty-service-type.
---
 gnu/services/base.scm | 34 +++++++++++++++++-----------------
 1 file changed, 17 insertions(+), 17 deletions(-)

diff --git a/gnu/services/base.scm b/gnu/services/base.scm
index 5817562..d2baea0 100644
--- a/gnu/services/base.scm
+++ b/gnu/services/base.scm
@@ -2305,23 +2305,23 @@ to handle."
                         (cons tty %default-console-font))
                       '("tty1" "tty2" "tty3" "tty4" "tty5" "tty6")))
 
-        (agetty-service (agetty-configuration
-                         (extra-options '("-L")) ; no carrier detect
-                         (term "vt100")
-                         (tty #f))) ; automatic
-
-        (mingetty-service (mingetty-configuration
-                           (tty "tty1")))
-        (mingetty-service (mingetty-configuration
-                           (tty "tty2")))
-        (mingetty-service (mingetty-configuration
-                           (tty "tty3")))
-        (mingetty-service (mingetty-configuration
-                           (tty "tty4")))
-        (mingetty-service (mingetty-configuration
-                           (tty "tty5")))
-        (mingetty-service (mingetty-configuration
-                           (tty "tty6")))
+        (service agetty-service-type (agetty-configuration
+                                       (extra-options '("-L")) ; no carrier 
detect
+                                       (term "vt100")
+                                       (tty #f))) ; automatic
+
+        (service mingetty-service-type (mingetty-configuration
+                                         (tty "tty1")))
+        (service mingetty-service-type (mingetty-configuration
+                                         (tty "tty2")))
+        (service mingetty-service-type (mingetty-configuration
+                                         (tty "tty3")))
+        (service mingetty-service-type (mingetty-configuration
+                                         (tty "tty4")))
+        (service mingetty-service-type (mingetty-configuration
+                                         (tty "tty5")))
+        (service mingetty-service-type (mingetty-configuration
+                                         (tty "tty6")))
 
         (service static-networking-service-type
                  (list (static-networking (interface "lo")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]