Files
nixos-blueprint/modules/nixos/config/networking/default.nix
2025-05-04 19:18:25 +03:00

19 lines
370 B
Nix

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