From 279d0105ad6e3b22516c7118df9449647cf7717b Mon Sep 17 00:00:00 2001 From: Emi Simpson Date: Mon, 16 Jan 2023 22:21:03 -0500 Subject: [PATCH] Fix syntax errors --- configs/programs/firefox.nix | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/configs/programs/firefox.nix b/configs/programs/firefox.nix index 83e5250..44f0530 100644 --- a/configs/programs/firefox.nix +++ b/configs/programs/firefox.nix @@ -47,10 +47,12 @@ pkgs: { }; "Anna's Archive" = { urls = [ - template = "https://annas-archive.org/search"; - params = [ - {name = "q"; value = "{searchTerms}"}; - ]; + { + template = "https://annas-archive.org/search"; + params = [ + {name = "q"; value = "{searchTerms}";} + ]; + } ]; iconUpdateURL = "https://annas-archive.org/favicon.ico"; updateInterval = 7 * 24 * 60 * 60 * 1000; # every week @@ -58,10 +60,12 @@ pkgs: { }; "GitHub" = { urls = [ - template = "https://github.com/search"; - params = [ - {name = "q"; value = "{searchTerms}"}; - ]; + { + template = "https://github.com/search"; + params = [ + {name = "q"; value = "{searchTerms}";} + ]; + } ]; iconUpdateURL = "https://github.com/favicon.ico"; updateInterval = 7 * 24 * 60 * 60 * 1000; # every week