Skip to content

Commit 4c9772b

Browse files
committed
server/networking: unset tcp BBR and fq
Appearantly TCP BBR is not a good idea without doing any performance measurements: #556 fq is actually incorrect. It should be `fq_codel` and systemd already applies this by default for us.
1 parent 239c82e commit 4c9772b

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

nixos/server/default.nix

-6
Original file line numberDiff line numberDiff line change
@@ -111,12 +111,6 @@
111111
'';
112112
};
113113

114-
# use TCP BBR has significantly increased throughput and reduced latency for connections
115-
boot.kernel.sysctl = {
116-
"net.core.default_qdisc" = "fq";
117-
"net.ipv4.tcp_congestion_control" = "bbr";
118-
};
119-
120114
# Make sure the serial console is visible in qemu when testing the server configuration
121115
# with nixos-rebuild build-vm
122116
virtualisation.vmVariant.virtualisation.graphics = lib.mkDefault false;

0 commit comments

Comments
 (0)