nixos-config/nixos/profiles/system/boot/sysctl/tcp-bbr.nix
2024-11-28 01:14:34 +08:00

8 lines
127 B
Nix

{ ... }:
{
boot.kernel.sysctl = {
"net.core.default_qdisc" = "fq";
"net.ipv4.tcp_congestion_control" = "bbr";
};
}