diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-09-10 21:45:12 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-09-10 23:34:29 +0200 |
commit | 1e8d398abca66bbe85caad6d338ac80a104701d2 (patch) | |
tree | 026c218f754eec1a6e57028eef94245cdbf06f87 | |
parent | 903ae630a0ae0df9fabd5ebab7d44577d6e7d0fc (diff) | |
download | patches-1e8d398abca66bbe85caad6d338ac80a104701d2.tar patches-1e8d398abca66bbe85caad6d338ac80a104701d2.tar.gz |
install: Add OpenSSH to the global profile.
Suggested by Jan Nieuwenhuizen.
* gnu/system/install.scm (installation-os)[packages]: Add OPENSSH.
-rw-r--r-- | gnu/system/install.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/system/install.scm b/gnu/system/install.scm index 5c0aaed18a..4aecfaca2c 100644 --- a/gnu/system/install.scm +++ b/gnu/system/install.scm @@ -31,6 +31,7 @@ #:use-module (gnu packages bash) #:use-module (gnu packages bootloaders) #:use-module (gnu packages linux) + #:use-module (gnu packages ssh) #:use-module (gnu packages cryptsetup) #:use-module (gnu packages package-management) #:use-module (gnu packages disk) @@ -352,6 +353,7 @@ Use Alt-F2 for documentation. mdadm dosfstools ;mkfs.fat, for the UEFI boot partition btrfs-progs + openssh ;we already have sshd, having ssh/scp can help wireless-tools iw wpa-supplicant-minimal iproute ;; XXX: We used to have GNU fdisk here, but as of version ;; 2.0.0a, that pulls Guile 1.8, which takes unreasonable |