nixos-config/sets/wifi.nix

8 lines
159 B
Nix
Raw Normal View History

2024-02-08 04:57:20 +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
}