1
0
Fork 0

Sail: Enable BBR

This commit is contained in:
Daniel Kempkens 2022-09-23 13:41:19 +02:00
parent 6ea99c83b4
commit bd26e8576b
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM

View file

@ -12,6 +12,11 @@
};
kernelModules = [ "tcp_bbr" ];
kernel.sysctl = {
"net.core.default_qdisc" = "fq";
"net.ipv4.tcp_congestion_control" = "bbr";
};
};
fileSystems."/" = { device = "/dev/sda1"; fsType = "ext4"; };