svn path=/nixos/trunk/; revision=17823

This commit is contained in:
Eelco Dolstra 2009-10-15 12:32:33 +00:00
parent f6f5d0414e
commit e055085ac1

View File

@ -8,9 +8,11 @@
installer.configModule = "./nixos/modules/installer/cd-dvd/installation-cd-minimal.nix"; installer.configModule = "./nixos/modules/installer/cd-dvd/installation-cd-minimal.nix";
# allow starting sshd by running "start sshd" # 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; services.sshd.enable = true;
jobs.sshd.startOn = "never-start-ssh-automatically-you-should-set-root-password-first"; jobs.sshd.startOn = "";
# Don't include X libraries. # Don't include X libraries.
services.sshd.forwardX11 = false; services.sshd.forwardX11 = false;