diff --git a/src/libstore/include/nix/store/filetransfer.hh b/src/libstore/include/nix/store/filetransfer.hh index 3862093db..76d036a78 100644 --- a/src/libstore/include/nix/store/filetransfer.hh +++ b/src/libstore/include/nix/store/filetransfer.hh @@ -70,12 +70,12 @@ struct FileTransferSettings : Config Setting downloadBufferSize{ this, - 64 * 1024 * 1024, + 1 * 1024 * 1024, "download-buffer-size", R"( The size of Nix's internal download buffer in bytes during `curl` transfers. If data is not processed quickly enough to exceed the size of this buffer, downloads may stall. - The default is 67108864 (64 MiB). + The default is 1048576 (1 MiB). )"}; };