From da5f745603d4060b3f5e11f9c8cf6df6a1dee130 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 15 Oct 2009 14:32:15 +0000 Subject: [PATCH] * You need an override here, otherwise bad things happen. svn path=/nixos/trunk/; revision=17831 --- modules/installer/cd-dvd/installation-cd-minimal.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/installer/cd-dvd/installation-cd-minimal.nix b/modules/installer/cd-dvd/installation-cd-minimal.nix index b87bc016d36..dc7188d8dc2 100644 --- a/modules/installer/cd-dvd/installation-cd-minimal.nix +++ b/modules/installer/cd-dvd/installation-cd-minimal.nix @@ -12,7 +12,7 @@ # not be started by default on the installation CD because the # default root password is empty. services.sshd.enable = true; - jobs.sshd.startOn = ""; + jobs.sshd.startOn = pkgs.lib.mkOverride 50 {} ""; # Don't include X libraries. services.sshd.forwardX11 = false;