6a3ff12527
- Restructure - Add sops+age
9 lines
173 B
Nix
9 lines
173 B
Nix
{ config, ... }:
|
|
{
|
|
boot.kernelModules = [ "tcp_bbr" ];
|
|
boot.kernel.sysctl = {
|
|
"net.ipv4.tcp_congestion_control" = "bbr";
|
|
"net.core.deafult_qdisc" = "fq";
|
|
};
|
|
}
|