about summary refs log tree commit diff
path: root/hosts/carmel/boot.nix
blob: b3b63da0c48c68568e9d917066de31d6599391b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ ... }:

{
  boot.loader.efi.efiSysMountPoint = "/boot/efi";

  boot.kernel.sysctl = {
    "net.ipv4.conf.all.forwarding" = true;
    "net.ipv4.conf.default.forwarding" = true;
    "net.core.default_qdisc" = "fq";
    "net.ipv4.tcp_congestion_control" = "bbr";
  };
}