bbr tcp
This commit is contained in:
parent
6df439251f
commit
8931887e59
|
@ -15,6 +15,7 @@
|
|||
./modules/xconfig.nix
|
||||
./modules/zsh.nix
|
||||
./modules/prometheus.nix
|
||||
./modules/kernel.nix
|
||||
];
|
||||
|
||||
};
|
||||
|
@ -24,6 +25,7 @@
|
|||
./modules/vim.nix
|
||||
./modules/zsh.nix
|
||||
./modules/prometheus.nix
|
||||
./modules/kernel.nix
|
||||
];
|
||||
};
|
||||
|
||||
|
|
17
modules/kernel.nix
Normal file
17
modules/kernel.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{ ... }:
|
||||
with lib;
|
||||
let cfg = config.voidcruiser.kernelTweaks;
|
||||
in {
|
||||
options.voidcruiser.kernelTweaks = {
|
||||
enable = mkEnableOption "Enables kernel tweaks";
|
||||
};
|
||||
config = mkIf cfg.enable {
|
||||
boot = {
|
||||
kernelModules = [ "tcp_bbr" ];
|
||||
kernel.sysctl = {
|
||||
"net.ipv4.tcp_congestion_control" = "bbr";
|
||||
"net.core.default_qdisc" = "fq";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue