10 lines
164 B
Nix
10 lines
164 B
Nix
{ ... }:
|
|
|
|
{
|
|
networking.networkmanager = {
|
|
enable = true;
|
|
wifi.backend = "iwd";
|
|
ethernet.macAddress = "random";
|
|
wifi.macAddress = "random";
|
|
};
|
|
}
|