13 lines
315 B
Nix
13 lines
315 B
Nix
{
|
|
imports = [./hosts.nix];
|
|
networking.networkmanager = {
|
|
ethernet.macAddress = "stable";
|
|
wifi.macAddress = "random";
|
|
wifi.scanRandMacAddress = true;
|
|
};
|
|
networking.wireless.iwd = {
|
|
settings.General.AddressRandomization = "network";
|
|
settings.Settings.AlwaysRandomizeAddress = true;
|
|
};
|
|
}
|