nixos-config/nixos/profiles/system/boot/sysctl/tcp-bbr.nix

8 lines
127 B
Nix
Raw Permalink Normal View History

2024-11-28 01:14:34 +08:00
{ ... }:
{
boot.kernel.sysctl = {
"net.core.default_qdisc" = "fq";
"net.ipv4.tcp_congestion_control" = "bbr";
};
}