Vivaldi: Difference between revisions
create basic page for vivaldi browser, with documentation to get it working on plasma6 due to a current issue. |
m Category:Web Browser added |
||
(One intermediate revision by the same 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> | ||
[[Category:Applications]] | |||
[[Category:Web Browser]] |
Latest revision as of 20:45, 26 September 2024
Vivaldi is a web browser by the Norwegian company Vivaldi Technologies.
Installation
add vivaldi
to your environment.systemPackages
and rebuild your system configuration.
Get it working with plasma 6
Currently, vivaldi crash at startup on plasma6 due to improper packaging[1], a workaround to this is to override the default package attributes by adding the following to your environment.systemPackages
:
(vivaldi.overrideAttrs
(oldAttrs: {
dontWrapQtApps = false;
dontPatchELF = true;
nativeBuildInputs = oldAttrs.nativeBuildInputs ++ [pkgs.kdePackages.wrapQtAppsHook];
}))