From fe7c1eb16bd74c76da8b36f43727ea49c36cbe30 Mon Sep 17 00:00:00 2001 From: Nicolas Pierron Date: Sat, 25 Sep 2010 09:44:48 +0000 Subject: [PATCH] Remove duplicated definitions. svn path=/nixos/trunk/; revision=23921 --- modules/installer/cd-dvd/installation-cd-base.nix | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/modules/installer/cd-dvd/installation-cd-base.nix b/modules/installer/cd-dvd/installation-cd-base.nix index 85f83b106cb..f4aa5c5451d 100644 --- a/modules/installer/cd-dvd/installation-cd-base.nix +++ b/modules/installer/cd-dvd/installation-cd-base.nix @@ -62,14 +62,4 @@ in # To speed up installation a little bit, include the complete stdenv # in the Nix store on the CD. isoImage.storeContents = [ pkgs.stdenv pkgs.klibc pkgs.klibcShrunk ]; - - # 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.openssh.enable = true; - jobs.sshd.startOn = pkgs.lib.mkOverrideTemplate 50 {} ""; - - # Enable wpa_supplicant, but don't start it by default. - networking.enableWLAN = true; - jobs.wpa_supplicant.startOn = pkgs.lib.mkOverrideTemplate 50 {} ""; }