Fix syntax errors

This commit is contained in:
Emi Simpson 2023-01-16 22:21:03 -05:00
parent c9088a4b8e
commit 279d0105ad
Signed by: Emi
GPG Key ID: A12F2C2FFDC3D847
1 changed files with 12 additions and 8 deletions

View File

@ -47,10 +47,12 @@ pkgs: {
}; };
"Anna's Archive" = { "Anna's Archive" = {
urls = [ urls = [
template = "https://annas-archive.org/search"; {
params = [ template = "https://annas-archive.org/search";
{name = "q"; value = "{searchTerms}"}; params = [
]; {name = "q"; value = "{searchTerms}";}
];
}
]; ];
iconUpdateURL = "https://annas-archive.org/favicon.ico"; iconUpdateURL = "https://annas-archive.org/favicon.ico";
updateInterval = 7 * 24 * 60 * 60 * 1000; # every week updateInterval = 7 * 24 * 60 * 60 * 1000; # every week
@ -58,10 +60,12 @@ pkgs: {
}; };
"GitHub" = { "GitHub" = {
urls = [ urls = [
template = "https://github.com/search"; {
params = [ template = "https://github.com/search";
{name = "q"; value = "{searchTerms}"}; params = [
]; {name = "q"; value = "{searchTerms}";}
];
}
]; ];
iconUpdateURL = "https://github.com/favicon.ico"; iconUpdateURL = "https://github.com/favicon.ico";
updateInterval = 7 * 24 * 60 * 60 * 1000; # every week updateInterval = 7 * 24 * 60 * 60 * 1000; # every week