Skip to content

Commit

Permalink
librewolf: add custom search engines
Browse files Browse the repository at this point in the history
  • Loading branch information
brckd committed Sep 25, 2024
1 parent 1d8c7a4 commit 0a82ce9
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions modules/home/librewolf/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,31 @@ in {
engines = {
"Google".metaData.hidden = true;
"Bing".metaData.hidden = true;
"Nix Packages" = {
urls = singleton {template = "https://search.nixos.org/packages?query={searchTerms}";};
iconUpdateURL = "https://search.nixos.org/favicon.png";
definedAliases = ["@np"];
};
"NixOS Options" = {
urls = singleton {template = "https://search.nixos.org/options?query={searchTerms}";};
iconUpdateURL = "https://search.nixos.org/favicon.png";
definedAliases = ["@no"];
};
"NixOS Wiki" = {
urls = singleton {template = "https://nixos.wiki/index.php?search={searchTerms}";};
iconUpdateURL = "https://nixos.wiki/favicon.png";
definedAliases = ["@nw"];
};
"Home Manager Options" = {
urls = singleton {template = "https://home-manager-options.extranix.com/?query={searchTerms}";};
iconUpdateURL = "https://home-manager-options.extranix.com/images/favicon.png";
definedAliases = ["@ho"];
};
"Fancade Wiki" = {
urls = singleton {template = "https://www.fancade.com/wiki/gollum/search?q={searchTerms}";};
iconUpdateURL = "https://www.fancade.com/favicon.ico";
definedAliases = ["@fw"];
};
};
};
bookmarks = [
Expand Down

0 comments on commit 0a82ce9

Please sign in to comment.