diff options
author | Leo Famulari <leo@famulari.name> | 2021-04-23 20:42:28 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2021-12-28 15:26:39 -0500 |
commit | 0d9d151424ab5823e441f056237819277b8aa072 (patch) | |
tree | d2f344124bfc80b2e4808a4d918e57314fc0c191 | |
parent | 2842a42b518227607fed4470b0de1c84e3511beb (diff) |
installer: Offer 'gpm-service-type' for non-graphical systems.
* gnu/installer/services.scm (%system-services): Add the gpm-service-type.
-rw-r--r-- | gnu/installer/services.scm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/installer/services.scm b/gnu/installer/services.scm index 94c49307f0..6584fcceec 100644 --- a/gnu/installer/services.scm +++ b/gnu/installer/services.scm @@ -111,6 +111,10 @@ (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 |