Merge pull request #298967 from vbgl/ocaml-5.2.0
[NixPkgs.git] / doc / functions / prefer-remote-fetch.section.md
blob8760c100224a73c31d30844c0d98b27457ecb223
1 # prefer-remote-fetch overlay {#sec-prefer-remote-fetch}
3 `prefer-remote-fetch` is an overlay that download sources on remote builder. This is useful when the evaluating machine has a slow upload while the builder can fetch faster directly from the source. To use it, put the following snippet as a new overlay:
5 ```nix
6 self: super:
7   (super.prefer-remote-fetch self super)
8 ```
10 A full configuration example for that sets the overlay up for your own account, could look like this
12 ```ShellSession
13 $ mkdir ~/.config/nixpkgs/overlays/
14 $ cat > ~/.config/nixpkgs/overlays/prefer-remote-fetch.nix <<EOF
15   self: super: super.prefer-remote-fetch self super
16 EOF
17 ```