idiosyn/nixos/module/wireless.nix
2024-08-21 21:06:51 +02:00

17 lines
317 B
Nix

{ ... }: { config, ...}: {
hardware.bluetooth.enable = true;
hardware.wirelessRegulatoryDatabase = true;
networking.wireless.iwd = {
enable = true;
settings = {
General = {
AddressRandomization = "network";
};
Rank = {
BandModifier2_4GHz = 0.8;
};
};
};
}