magpie/sysctl: set BRR congestion control

This commit is contained in:
Asmir A 2023-11-06 22:26:03 +01:00
parent 2f3c3f3f0c
commit a2daa8e145
Signed by: asmir
GPG Key ID: 020C42B7A9ABA3E2

View File

@ -14,6 +14,10 @@
boot.loader.grub.devices = ["/dev/sda"];
boot.loader.efi.canTouchEfiVariables = true;
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.kernel.sysctl = {
"net.core.default_qdisc" = "fq";
"net.ipv4.tcp_congestion_control" = "bbr";
};
# Set your time zone.
time.timeZone = "Europe/Berlin";