system: bare-bones: Remove dependency to X libraries.

Use "openssh-sans-x" to prevent the inclusion of X libraries to the bare-bones
system closure.

* gnu/system/examples/bare-bones.tmpl (operating-system)[services]: Use
openssh-sans-x instead of openssh.
This commit is contained in:
Mathieu Othacehe 2020-06-06 11:10:42 +02:00
parent 65c8512f9c
commit 0dddaa7b01
No known key found for this signature in database
GPG key ID: 8354763531769CA6

View file

@ -3,7 +3,7 @@
(use-modules (gnu))
(use-service-modules networking ssh)
(use-package-modules screen)
(use-package-modules screen ssh)
(operating-system
(host-name "komputilo")
@ -46,5 +46,6 @@
(services (append (list (service dhcp-client-service-type)
(service openssh-service-type
(openssh-configuration
(openssh openssh-sans-x)
(port-number 2222))))
%base-services)))