9 lines
174 B
Nix
9 lines
174 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
# https://github.com/quic-go/quic-go/wiki/UDP-Buffer-Sizes
|
||
|
boot.kernel.sysctl = {
|
||
|
"net.core.rmem_max" = 7500000;
|
||
|
"net.core.wmem_max" = 7500000;
|
||
|
};
|
||
|
}
|