Skip to content

Commit

Permalink
installer: Include stdenvNoCC
Browse files Browse the repository at this point in the history
And don't include ArchiveCpio as that one is no longer needed after
5a81474 ("make-initrd: create reproducible initrds").
  • Loading branch information
dezgeg committed Jan 23, 2017
1 parent 1853f17 commit b63f97c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions nixos/modules/profiles/installation-device.nix
Expand Up @@ -66,9 +66,8 @@ with lib;
boot.kernel.sysctl."vm.overcommit_memory" = "1";

# To speed up installation a little bit, include the complete
# stdenv in the Nix store on the CD. Archive::Cpio is needed for
# the initrd builder.
system.extraDependencies = [ pkgs.stdenv pkgs.busybox pkgs.perlPackages.ArchiveCpio ];
# stdenv in the Nix store on the CD.
system.extraDependencies = with pkgs; [ stdenv stdenvNoCC busybox ];

# Show all debug messages from the kernel but don't log refused packets
# because we have the firewall enabled. This makes installs from the
Expand Down

0 comments on commit b63f97c

Please sign in to comment.