Files
nixos-blueprint/modules/shared/nixos/networking/default.nix
T
2025-12-31 15:03:16 +02:00

12 lines
288 B
Nix

{
networking.networkmanager = {
ethernet.macAddress = "stable";
wifi.macAddress = "random";
wifi.scanRandMacAddress = true;
};
networking.wireless.iwd = {
settings.General.AddressRandomization = "network";
settings.Settings.AlwaysRandomizeAddress = true;
};
}