diff options
Diffstat (limited to 'gnu/system')
-rw-r--r-- | gnu/system/examples/vm-image.tmpl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/system/examples/vm-image.tmpl b/gnu/system/examples/vm-image.tmpl index b6f9daaf61..9bc08fa635 100644 --- a/gnu/system/examples/vm-image.tmpl +++ b/gnu/system/examples/vm-image.tmpl @@ -5,7 +5,7 @@ ;; (use-modules (gnu) (srfi srfi-1)) -(use-service-modules desktop networking xorg) +(use-service-modules desktop networking ssh xorg) (use-package-modules bootloaders nvi wget xorg) (define vm-image-motd (plain-file "motd" " @@ -73,6 +73,9 @@ accounts.\x1b[0m (xorg-configuration (keyboard-layout keyboard-layout))))) + ;; Uncomment the line below to add an SSH server. + ;;(service openssh-service-type) + ;; Use the DHCP client service rather than NetworkManager. (service dhcp-client-service-type)) |