nixy/sysctl: set BRR congestion control

This commit is contained in:
Asmir A 2023-11-06 22:30:39 +01:00
parent a2daa8e145
commit 3c3c3dab6e
Signed by: asmir
GPG Key ID: 020C42B7A9ABA3E2

View File

@ -38,6 +38,10 @@
binfmt.emulatedSystems = ["wasm32-wasi" "x86_64-windows"];
kernelPackages = pkgs.linuxPackages_latest;
kernelParams = ["psmouse.synaptics_intertouch=0" "mem_sleep_default=deep"];
kernel.sysctl = {
"net.core.default_qdisc" = "fq";
"net.ipv4.tcp_congestion_control" = "bbr";
};
loader.efi.canTouchEfiVariables = true;
loader.systemd-boot = {
editor = false;