1
0
Fork 0

feature(librewolf): add suggestion search for SearXNG

This commit is contained in:
Philipp 2025-06-11 15:51:52 +02:00
parent 6eae4d5c7f
commit ad49980847
Signed by: Philipp
GPG key ID: 9EBD8439AFBAB750

View file

@ -21,6 +21,8 @@ let
"signon.storeWhenAutocompleteOff" = true;
"sidebar.verticalTabs" = true;
"general.useragent.compatMode.firefox" = true;
"browser.search.suggest.enabled" = true;
"browser.urlbar.suggest.searches" = true;
};
defaultExtensions = with inputs.firefox-addons.packages."x86_64-linux"; [
bitwarden
@ -36,7 +38,13 @@ let
default = "SearXNG";
engines = {
"SearXNG" = {
urls = [ { template = "https://search.stahl.sh/search?q={searchTerms}"; } ];
urls = [
{ template = "https://search.stahl.sh/search?q={searchTerms}"; }
{
template = "https://search.stahl.sh/autocompleter?q={searchTerms}";
type = "application/x-suggestions+json";
}
];
icon = "https://search.stahl.sh/static/themes/simple/img/favicon.png";
definedAliases = [ "@s" ];
};