10 lines
195 B
Nix
10 lines
195 B
Nix
{ ... }:
|
|
{
|
|
networking.networkmanager = {
|
|
enable = true;
|
|
ethernet.macAddress = "random";
|
|
wifi.macAddress = "random";
|
|
};
|
|
users.users.artemis.extraGroups = [ "networkmanager" ];
|
|
}
|