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:
parent
6eeb49f93c
commit
4e13e8c631
1 changed files with 2 additions and 2 deletions
|
@ -55,14 +55,14 @@ let
|
||||||
};
|
};
|
||||||
|
|
||||||
"NixOS Packages" = {
|
"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";
|
icon = "https://wiki.nixos.org/favicon.ico";
|
||||||
updateInterval = 24 * 60 * 60 * 1000;
|
updateInterval = 24 * 60 * 60 * 1000;
|
||||||
definedAliases = [ "@np" ];
|
definedAliases = [ "@np" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
"NixOS Options" = {
|
"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";
|
icon = "https://wiki.nixos.org/favicon.ico";
|
||||||
updateInterval = 24 * 60 * 60 * 1000;
|
updateInterval = 24 * 60 * 60 * 1000;
|
||||||
definedAliases = [ "@no" ];
|
definedAliases = [ "@no" ];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue