nixos-config/common/hardware/wifi.nix
2024-04-22 21:24:54 +02:00

11 lines
307 B
Nix

{
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";
};
}