nixos-config/common/hardware/wifi.nix

11 lines
307 B
Nix
Raw Normal View History

2024-04-22 21:24:54 +02:00
{
networking.networkmanager.wifi = {
powersave = true;
scanRandMacAddress = true;
# https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/issues/1091
# backend = "iwd";
# Generate a random MAC for each WiFi and associate the two permanently.
macAddress = "stable";
};
}