8 lines
159 B
Nix
8 lines
159 B
Nix
{ ... }: {
|
|
networking.networkmanager = {
|
|
enable = true;
|
|
wifi.macAddress = "stable";
|
|
};
|
|
users.users.artemis.extraGroups = [ "networkmanager" ];
|
|
}
|