ark/modules/network/iwd.nix

13 lines
276 B
Nix
Raw Normal View History

2020-11-21 23:54:07 +03:00
{
2022-02-18 20:31:01 +03:00
imports = [./dns];
2022-09-02 16:16:07 +03:00
networking.wireless.iwd = {
enable = true;
settings = {
Network = { EnableIPv6 = true; };
Settings = { AutoConnect = true; };
};
};
2020-11-21 23:54:07 +03:00
networking.networkmanager.wifi.backend = "iwd";
services.connman.wifi.backend = "iwd";
}