Files
nixos-blueprint/modules/nixos/shared/networking/default.nix
T
2026-04-24 16:44:58 +03:00

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;
};
}