Iwd: Difference between revisions
imported>Fufexan m Add page to Networking category |
imported>Hucksy Add details on how to configure iwd |
||
Line 13: | Line 13: | ||
== Configuration == | == Configuration == | ||
To configure iwd, you should use <code>networking.wireless.iwd.settings</code> option. An example configuration, which enables IPv6 and automatic connection to known networks, would be similar to: | |||
<syntaxhighlight lang="nix"> | |||
{ | |||
networking.wireless.iwd.settings = { | |||
IPv6 = { | |||
Enabled = true; | |||
}; | |||
Settings = { | |||
AutoConnect = true; | |||
}; | |||
}; | |||
} | |||
</syntaxhighlight> | |||
For a detailed and up-to-date list of available settings, please reference the [https://git.kernel.org/pub/scm/network/wireless/iwd.git/tree/src/iwd.network.rst network daemon configuration docummentation], from kernel Git repo. | |||
=== iwd as backend for NetworkManager === | === iwd as backend for NetworkManager === |