Files
nixos-blueprint/modules/nixos/shared/networking/default.nix
T
2026-01-24 22:57:18 +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;
};
}