lol

nixos/modules/installer/netboot/netboot-minimal: reduce closure size

Izorkin bb5370b8 3e3367aa

+5
+2
nixos/doc/manual/release-notes/rl-2305.section.md
··· 183 183 184 184 - To reduce closure size in `nixos/modules/profiles/minimal.nix` profile disabled installation documentations and manuals. Also disabled `logrotate` and `udisks2` services. 185 185 186 + - To reduce closure size in `nixos/modules/installer/netboot/netboot-minimal.nix` profile disabled load linux firmwares, pre-installing the complete stdenv and `networking.wireless` service. 187 + 186 188 - The minimal ISO image now uses the `nixos/modules/profiles/minimal.nix` profile. 187 189 188 190 - The `ghcWithPackages` and `ghcWithHoogle` wrappers will now also symlink GHC's
+3
nixos/modules/installer/netboot/netboot-minimal.nix
··· 9 9 ]; 10 10 11 11 documentation.man.enable = lib.mkOverride 500 true; 12 + hardware.enableRedistributableFirmware = lib.mkOverride 70 false; 13 + system.extraDependencies = lib.mkOverride 70 []; 14 + networking.wireless.enable = lib.mkOverride 500 false; 12 15 }