aboutsummaryrefslogtreecommitdiff
path: root/profiles/core/boot.nix
diff options
context:
space:
mode:
Diffstat (limited to 'profiles/core/boot.nix')
-rw-r--r--profiles/core/boot.nix11
1 files changed, 0 insertions, 11 deletions
diff --git a/profiles/core/boot.nix b/profiles/core/boot.nix
deleted file mode 100644
index 8aacfbf..0000000
--- a/profiles/core/boot.nix
+++ /dev/null
@@ -1,11 +0,0 @@
-{ 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;
- };
-}