13 lines
192 B
Nix
13 lines
192 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
networking = {
|
||
|
networkmanager = {
|
||
|
enable = true;
|
||
|
ethernet.macAddress = "random";
|
||
|
wifi.macAddress = "random";
|
||
|
};
|
||
|
wireless.iwd.enable = false;
|
||
|
};
|
||
|
}
|