aboutsummaryrefslogtreecommitdiff
path: root/profiles/core/boot.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2025-08-17 08:56:59 -0700
committerFranck Cuny <franck@fcuny.net>2025-08-17 08:56:59 -0700
commitedc6a381b8a5b320491c2e24d84ced57f7d6f065 (patch)
treea7641091042b285d3350b80efb8f037732045aa9 /profiles/core/boot.nix
parentcreate a new systemd slice for critical services (diff)
downloadinfra-edc6a381b8a5b320491c2e24d84ced57f7d6f065.tar.gz
a few more network related sysctl
Diffstat (limited to 'profiles/core/boot.nix')
-rw-r--r--profiles/core/boot.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/profiles/core/boot.nix b/profiles/core/boot.nix
index 42bbb02..8aacfbf 100644
--- a/profiles/core/boot.nix
+++ b/profiles/core/boot.nix
@@ -3,6 +3,8 @@
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;
};