Iwd: Difference between revisions

imported>Makefu
use option instead of extraConfig for networkmanager
imported>Makefu
add gnome-keyring remark
Line 20: Line 20:


Note that iwd is experimental and it does not have feature parity with the default backend, wpa_supplicant.
Note that iwd is experimental and it does not have feature parity with the default backend, wpa_supplicant.
== Troubleshooting ==
=== org.freedesktop.service failed ===
When connecting to a protected network it could happen that no password window appears and the following message is written in the journal:
<pre>
dbus-daemon[1732]: [session uid=9001 pid=1730] Activated service 'org.freedesktop.secrets' failed: Failed to execute program org.freedesktop.secrets: No such file or directory
</pre>
Your desktop manager may not enable some secrets management service you may need to enable one:
<syntaxHighlight lang=nix>
{
  services.gnome3.gnome-keyring.enable = true;
}
</syntaxHighlight>