Vivaldi: Difference between revisions
create basic page for vivaldi browser, with documentation to get it working on plasma6 due to a current issue. |
Added example of modifying vivaldi to force specific password store |
||
(2 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
[https://vivaldi.com Vivaldi] is a web browser by the Norwegian company Vivaldi Technologies. | |||
== Installation == | == Installation == | ||
add <code>vivaldi</code> to your <code>environment.systemPackages</code> and rebuild your system configuration. | add <code>vivaldi</code> to your <code>environment.systemPackages</code> and rebuild your system configuration. | ||
Line 13: | Line 15: | ||
})) | })) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
== Force use of password store (KWlallet, GNOME Keyring) == | |||
To force of specific password store you will have to modify the package according to [https://chromium.googlesource.com/chromium/src/+/master/docs/linux/password_storage.md chromium docs] | |||
Use <code>gnome-libsecret</code> for GNOME Keyring and <code>kwallet6</code> for KDE Plasma 6<syntaxhighlight lang="nix"> | |||
(stable.vivaldi.override { | |||
commandLineArgs = "--password-store=kwallet6"; | |||
}) | |||
</syntaxhighlight> | |||
[[Category:Applications]] | |||
[[Category:Web Browser]] |