nixos-config/sets/wifi.nix

9 lines
159 B
Nix
Raw Normal View History

2024-03-02 03:13:17 +00:00
{ ... }:
{
2022-01-10 18:16:09 +00:00
networking.networkmanager = {
2021-11-20 05:15:37 +00:00
enable = true;
wifi.macAddress = "stable";
2021-11-20 05:15:37 +00:00
};
2022-01-10 18:16:09 +00:00
users.users.artemis.extraGroups = [ "networkmanager" ];
2020-12-16 21:43:48 +00:00
}