ark/modules/network/iwd.nix

13 lines
272 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 = {
2022-09-02 18:02:46 +03:00
Network = {EnableIPv6 = true;};
Settings = {AutoConnect = true;};
2022-09-02 16:16:07 +03:00
};
};
2020-11-21 23:54:07 +03:00
networking.networkmanager.wifi.backend = "iwd";
services.connman.wifi.backend = "iwd";
}