aboutsummaryrefslogtreecommitdiff
path: root/profiles/core/boot.nix
blob: 8aacfbf98d28aa2f1a2f6e31593b418041204cba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ pkgs, ... }:
{
  boot.kernelPackages = pkgs.linuxPackages_latest;

  boot.kernel.sysctl = {
    "net.ipv4.tcp_congestion_control" = "bbr";
    "net.ipv4.tcp_ecn" = 1;
    "net.ipv4.tcp_fastopen" = 3;
    "net.ipv4.tcp_tw_reuse" = 1;
  };
}