12 lines
251 B
Nix
12 lines
251 B
Nix
{
|
|
networking.wireless.iwd = {
|
|
enable = true;
|
|
settings = {
|
|
Network = {EnableIPv6 = true;};
|
|
Settings = {AutoConnect = true;};
|
|
};
|
|
};
|
|
networking.networkmanager.wifi.backend = "iwd";
|
|
services.connman.wifi.backend = "iwd";
|
|
}
|