diff options
| author | brustybee <bee@4d2.org> | 2026-03-19 23:38:57 +0530 |
|---|---|---|
| committer | brustybee <bee@4d2.org> | 2026-03-19 23:38:57 +0530 |
| commit | 6e709195b0d27903983e079c1c366bb7de0b753e (patch) | |
| tree | 961a69f61b1f869b3fc25fcc8dfaafcd74b60fe5 /common | |
| parent | a6d4450b3438b380398e38b61f46b19022fff1e9 (diff) | |
add omnisearch and make it default search engine
Diffstat (limited to 'common')
| -rw-r--r-- | common/programs/zenBrowser.nix | 9 |
1 files changed, 8 insertions, 1 deletions
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,7 +75,8 @@ in ExtensionSettings = builtins.listToAttrs extensions; SearchEngines = { - Default = "DuckDuckGo"; + # Default = "DuckDuckGo"; + Default = "Omnisearch"; PreventInstalls = true; Remove = [ "Google" @@ -83,6 +84,12 @@ in ]; 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}"; IconURL = "https://wiki.nixos.org/favicon.ico"; |
