10 lines
207 B
Nix
10 lines
207 B
Nix
{ pkgs, ... }:
|
|
{
|
|
services.udev.packages = [ pkgs.crda ];
|
|
networking.networkmanager = {
|
|
enable = true;
|
|
wifi.macAddress = "stable";
|
|
};
|
|
users.users.artemis.extraGroups = [ "networkmanager" ];
|
|
}
|