Don't include klibc in the installation CD

This commit is contained in:
Eelco Dolstra 2012-06-22 11:39:27 -04:00
parent 9692495df0
commit 7b54922227
2 changed files with 2 additions and 2 deletions

View File

@ -66,5 +66,5 @@ 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 ];
isoImage.storeContents = [ pkgs.stdenv ];
}

View File

@ -123,7 +123,7 @@ in
# To speed up further installation of packages, include the complete stdenv
# in the Nix store of the tarball.
tarball.storeContents = pkgs2storeContents [ pkgs.stdenv pkgs.klibc pkgs.klibcShrunk ];
tarball.storeContents = pkgs2storeContents [ pkgs.stdenv ];
tarball.contents =
[ { source = config.boot.kernelPackages.kernel + "/" + config.system.boot.loader.kernelFile;