lol

nixos/installation-device: don’t include stdenv (#418267)

+5 -2
+1 -2
nixos/modules/profiles/installation-device.nix
··· 102 102 boot.kernel.sysctl."vm.overcommit_memory" = "1"; 103 103 104 104 # To speed up installation a little bit, include the complete 105 - # stdenv in the Nix store on the CD. 105 + # stdenvNoCC in the Nix store on the CD. 106 106 system.extraDependencies = 107 107 with pkgs; 108 108 [ 109 - stdenv 110 109 stdenvNoCC # for runCommand 111 110 busybox 112 111 # For boot.initrd.systemd
+4
nixos/tests/installer.nix
··· 709 709 system.extraDependencies = 710 710 with pkgs; 711 711 [ 712 + # TODO: Remove this when we can install systems 713 + # without `stdenv`. 714 + stdenv 715 + 712 716 bintools 713 717 brotli 714 718 brotli.dev