18
modules/shared/nixos/networking/default.nix
Normal file
18
modules/shared/nixos/networking/default.nix
Normal file
@ -0,0 +1,18 @@
|
||||
{
|
||||
networking = {
|
||||
hosts = import ./hosts.nix;
|
||||
networkmanager = {
|
||||
ethernet.macAddress = "stable";
|
||||
wifi = {
|
||||
macAddress = "random";
|
||||
scanRandMacAddress = true;
|
||||
};
|
||||
};
|
||||
wireless.iwd = {
|
||||
settings = {
|
||||
General.AddressRandomization = "network";
|
||||
Settings.AlwaysRandomizeAddress = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user