Files
haschel/modules/boot.nix
Atridad Lahiji 08b69bb46a
Some checks failed
Deploy NixOS / deploy (push) Failing after 18s
Cleanup now that I finally got the LSP working... so many warnings.
2026-02-17 15:19:03 -07:00

18 lines
326 B
Nix

{ pkgs, ... }:
{
boot.loader.grub = {
enable = true;
device = "/dev/sda";
configurationLimit = 10;
};
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.kernelModules = [ "tcp_bbr" ];
boot.kernel.sysctl = {
"net.core.default_qdisc" = "fq";
"net.ipv4.tcp_congestion_control" = "bbr";
};
}