Created
October 11, 2023 11:16
-
-
Save Zaczero/59055969dc71fda0548ca7da5acb18df to your computer and use it in GitHub Desktop.
NixOS TCP BBR Congestion Control
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
boot.kernelPackages = pkgs.linuxPackages_latest; # (optional) | |
boot.kernelPatches = [{ | |
name = "bbr"; | |
patch = null; | |
extraStructuredConfig = with pkgs.lib.kernel; { | |
TCP_CONG_BBR = yes; # enable BBR | |
DEFAULT_BBR = yes; # use it by default | |
}; | |
}]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment