···1111 --arg evalSystems '["x86_64-linux" "aarch64-darwin"]'
1212```
13131414-- `--max-jobs`: The maximum number of derivations to run at the same time. Only each [supported system](../supportedSystems.nix) gets a separate derivation, so it doesn't make sense to set this higher than that number.
1414+- `--max-jobs`: The maximum number of derivations to run at the same time. Only each [supported system](../supportedSystems.json) gets a separate derivation, so it doesn't make sense to set this higher than that number.
1515- `--cores`: The number of cores to use for each job. Recommended to set this to the amount of cores on your system divided by `--max-jobs`.
1616- `chunkSize`: The number of attributes that are evaluated simultaneously on a single core. Lowering this decreases memory usage at the cost of increased evaluation time. If this is too high, there won't be enough chunks to process them in parallel, and will also increase evaluation time.
1717- `evalSystems`: The set of systems for which `nixpkgs` should be evaluated. Defaults to the four official platforms (`x86_64-linux`, `aarch64-linux`, `x86_64-darwin` and `aarch64-darwin`).
···1313 attrNamesOnly ? false,
14141515 # Set this to `null` to build for builtins.currentSystem only
1616- systems ? import ../../ci/supportedSystems.nix,
1616+ systems ? builtins.fromJSON (builtins.readFile ../../ci/supportedSystems.json),
1717}:
1818let
1919 lib = import (path + "/lib");
+1-1
pkgs/top-level/release.nix
···1919 system ? builtins.currentSystem,
2020 officialRelease ? false,
2121 # The platform doubles for which we build Nixpkgs.
2222- supportedSystems ? import ../../ci/supportedSystems.nix,
2222+ supportedSystems ? builtins.fromJSON (builtins.readFile ../../ci/supportedSystems.json),
2323 # The platform triples for which we build bootstrap tools.
2424 bootstrapConfigs ? [
2525 "aarch64-apple-darwin"