21 lines
405 B
Nix
21 lines
405 B
Nix
{
|
|
networking = {
|
|
networkmanager = {
|
|
enable = true;
|
|
ethernet.macAddress = "stable";
|
|
wifi = {
|
|
backend = "iwd";
|
|
macAddress = "random";
|
|
scanRandMacAddress = true;
|
|
};
|
|
};
|
|
wireless.iwd = {
|
|
enable = true;
|
|
settings = {
|
|
General.AddressRandomization = "network";
|
|
Settings.AlwaysRandomizeAddress = true;
|
|
};
|
|
};
|
|
};
|
|
}
|