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