11 lines
307 B
Nix
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";
|
|
};
|
|
}
|