diff --git a/configuration/rescue-cd.nix b/configuration/rescue-cd.nix index 52bd0888f7d2..72d3bcad3804 100644 --- a/configuration/rescue-cd.nix +++ b/configuration/rescue-cd.nix @@ -126,7 +126,7 @@ rec { # kernel, the initrd produced above, and the closure of the stage 2 # init. rescueCD = import ../helpers/make-iso9660-image.nix { - inherit (pkgs) stdenv cdrtools; + inherit (pkgs) stdenv perl cdrtools; isoName = "nixos.iso"; # Single files to be copied to fixed locations on the CD. @@ -159,6 +159,10 @@ rec { { object = system.bootStage2; symlink = "/init"; } + # To speed up the installation, provide the full stdenv. + { object = pkgs.stdenv; + symlink = "none"; + } ]; bootable = true;