Forward-port sshd fixes to iso-minimal-fresh-kernel. By the way, maybe we should finalyy decide what to do with kernel update and corresponding ISO update (to fresh-kernel proposal or otherwise)

svn path=/nixos/trunk/; revision=17840
This commit is contained in:
Michael Raskin 2009-10-16 04:27:59 +00:00
parent fceadcbef7
commit 35abca4e7a

View File

@ -8,6 +8,12 @@ rec {
installer.configModule = "./nixos/modules/installer/cd-dvd/installation-cd-minimal-fresh-kernel.nix";
# Allow sshd to be started manually through "start sshd". It should
# not be started by default on the installation CD because the
# default root password is empty.
services.sshd.enable = true;
jobs.sshd.startOn = pkgs.lib.mkOverride 50 {} "";
# Don't include X libraries.
environment.noXlibs = true;