From 35e2bac06939801588ab0445f62f8529a96651f2 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 15 Aug 2013 13:22:41 +0200 Subject: [PATCH] Remove $mountPoint I just don't see the reason for setting this globally, given that /mnt is the default. --- modules/installer/cd-dvd/installation-cd-base.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/modules/installer/cd-dvd/installation-cd-base.nix b/modules/installer/cd-dvd/installation-cd-base.nix index edcbed6e0b93..5c67c8e2a9d7 100644 --- a/modules/installer/cd-dvd/installation-cd-base.nix +++ b/modules/installer/cd-dvd/installation-cd-base.nix @@ -32,6 +32,4 @@ with pkgs.lib; # To speed up installation a little bit, include the complete stdenv # in the Nix store on the CD. isoImage.storeContents = [ pkgs.stdenv pkgs.busybox ]; - - environment.shellInit = "export mountPoint=/mnt"; }