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

19 lines
379 B
Nix

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