mirror of
https://github.com/status-im/status-react.git
synced 2025-01-09 10:42:53 +00:00
125d3239de
This is a workaround for a well known issue of Nix failing to download bigger packages from Nix cache due to errors like this: ``` HTTP error 200 (curl error: Transferred a partial file) ``` or ``` HTTP error 200 (curl error: Stream error in the HTTP/2 framing layer) ``` From docs: https://nixos.org/manual/nix/stable/command-ref/conf-file.html#conf-fallback >If set to true, Nix will fall back to building from source if a binary >substitute fails. This is equivalent to the --fallback flag. The default is false. Realted: https://github.com/status-im/infra-ci/issues/17 Signed-off-by: Jakub Sokołowski <jakub@status.im>
18 lines
867 B
Plaintext
18 lines
867 B
Plaintext
# NOTE: If you are in Asia you might want to add https://nix-cache-cn.status.im/ to substituters.
|
|
substituters = https://nix-cache.status.im/ https://cache.nixos.org/
|
|
trusted-substituters = https://nix-cache.status.im/ https://cache.nixos.org/
|
|
trusted-public-keys = nix-cache.status.im-1:x/93lOfLU+duPplwMSBR+OlY4+mo+dCN7n0mr4oPwgY= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=
|
|
# Some downloads are multiple GB, default is 5 minutes
|
|
stalled-download-timeout = 3600
|
|
connect-timeout = 10
|
|
max-jobs = auto
|
|
# Build packages if fetching from cache fails.
|
|
fallback = true
|
|
# Helps avoid removing currently used dependencies via garbage collection
|
|
keep-derivations = true
|
|
keep-outputs = true
|
|
# Some builds on MacOS have issue with sandbox so they are disabled with __noChroot.
|
|
sandbox = relaxed
|
|
# Enable Nix v2 interface.
|
|
experimental-features = nix-command
|