1
0
Fork 0

fix(librewolf): fix search engine shortcuts not working

We made a little typo, and broke everything. Sadly url seems to be a
valid option, it had to be urls instead mightly confusing to be honest.
This commit is contained in:
Philipp 2025-06-02 17:04:12 +02:00
parent 6eeb49f93c
commit 4e13e8c631
Signed by: Philipp
GPG key ID: 9EBD8439AFBAB750

View file

@ -55,14 +55,14 @@ let
};
"NixOS Packages" = {
url = [ { template = "https://search.nixos.org/packages?query={searchTerms}"; } ];
urls = [ { template = "https://search.nixos.org/packages?query={searchTerms}"; } ];
icon = "https://wiki.nixos.org/favicon.ico";
updateInterval = 24 * 60 * 60 * 1000;
definedAliases = [ "@np" ];
};
"NixOS Options" = {
url = [ { template = "https://search.nixos.org/options?query={searchTerms}"; } ];
urls = [ { template = "https://search.nixos.org/options?query={searchTerms}"; } ];
icon = "https://wiki.nixos.org/favicon.ico";
updateInterval = 24 * 60 * 60 * 1000;
definedAliases = [ "@no" ];