From 6e709195b0d27903983e079c1c366bb7de0b753e Mon Sep 17 00:00:00 2001 From: brustybee Date: Thu, 19 Mar 2026 23:38:57 +0530 Subject: add omnisearch and make it default search engine --- common/programs/zenBrowser.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'common') diff --git a/common/programs/zenBrowser.nix b/common/programs/zenBrowser.nix index 8d9f08e..9fe22a9 100644 --- a/common/programs/zenBrowser.nix +++ b/common/programs/zenBrowser.nix @@ -75,13 +75,20 @@ in ExtensionSettings = builtins.listToAttrs extensions; SearchEngines = { - Default = "DuckDuckGo"; + # Default = "DuckDuckGo"; + Default = "Omnisearch"; PreventInstalls = true; Remove = [ "Google" "Bing" ]; Add = [ + { + Name = "Omnisearch"; + URLTemplate = "http://localhost:8087/search?q={searchTerms}"; + IconURL = "http://localhost:8087/static/favicon.ico"; + Alias = ":o"; + } { Name = "nixpkgs packages"; URLTemplate = "https://search.nixos.org/packages?query={searchTerms}"; -- cgit v1.3.1