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

This commit is contained in:
Vladimír Čunát 2025-08-04 08:44:35 +02:00
commit 0b0c68c77d
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA
2 changed files with 5 additions and 2 deletions

View File

@ -102,11 +102,10 @@ 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.
# stdenvNoCC in the Nix store on the CD.
system.extraDependencies =
with pkgs;
[
stdenv
stdenvNoCC # for runCommand
busybox
# For boot.initrd.systemd

View File

@ -709,6 +709,10 @@ let
system.extraDependencies =
with pkgs;
[
# TODO: Remove this when we can install systems
# without `stdenv`.
stdenv
bintools
brotli
brotli.dev