1
0
Fork 0
dotfiles/hardware/hosts/adsb-antenna.nix

44 lines
1 KiB
Nix
Raw Normal View History

2022-08-01 20:39:14 +00:00
{ config, lib, pkgs, modulesPath, ... }:
{
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
boot = {
initrd = {
availableKernelModules = [ "xhci_pci" "usbhid" ];
kernelModules = [ ];
};
2022-09-26 13:57:31 +00:00
kernelModules = [ "tcp_bbr" ];
2022-08-01 20:39:14 +00:00
extraModulePackages = [ ];
2022-08-02 16:53:06 +00:00
blacklistedKernelModules = [ "rtl2832" "dvb_usb_rtl28xxu" "rtl2832_sdr" ];
2022-09-26 13:57:31 +00:00
kernel.sysctl = {
"net.core.default_qdisc" = "fq";
"net.ipv4.tcp_congestion_control" = "bbr";
2023-05-14 10:55:29 +00:00
"net.ipv4.tcp_syncookies" = 0;
"net.ipv4.tcp_timestamps" = 1;
"net.ipv4.tcp_window_scaling" = 1;
2022-09-26 13:57:31 +00:00
};
2022-08-01 20:39:14 +00:00
};
fileSystems."/" = {
device = "/dev/disk/by-uuid/44444444-4444-4444-8888-888888888888";
fsType = "ext4";
};
2022-08-18 17:17:14 +00:00
swapDevices = [
{
device = "/var/lib/swapfile";
2022-08-18 18:49:30 +00:00
size = 4096;
2022-08-18 17:17:14 +00:00
}
];
2022-08-01 20:39:14 +00:00
networking.useDHCP = lib.mkDefault true;
# networking.interfaces.eth0.useDHCP = lib.mkDefault true;
# networking.interfaces.wlan0.useDHCP = lib.mkDefault true;
powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand";
}