diff --git a/modules/installer/cd-dvd/installation-cd-base.nix b/modules/installer/cd-dvd/installation-cd-base.nix index ae227dbcb80..aff46fbac34 100644 --- a/modules/installer/cd-dvd/installation-cd-base.nix +++ b/modules/installer/cd-dvd/installation-cd-base.nix @@ -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 ]; } diff --git a/modules/installer/cd-dvd/system-tarball-pc.nix b/modules/installer/cd-dvd/system-tarball-pc.nix index 035b6dd6c0a..ddad520c446 100644 --- a/modules/installer/cd-dvd/system-tarball-pc.nix +++ b/modules/installer/cd-dvd/system-tarball-pc.nix @@ -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;