Files
nixos-blueprint/modules/nixos/shared/networking/default.nix
2025-06-17 12:35:52 +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;
};
};
};
}