33 lines
1.3 KiB
Nix
33 lines
1.3 KiB
Nix
pkgs: {
|
|
"OpenStreetMap" = {
|
|
urls = [{template = "https://www.openstreetmap.org/search?query={searchTerms}";}];
|
|
definedAliases = ["@osm" "@openstreetmap"];
|
|
};
|
|
"NixOS Wiki" = {
|
|
urls = [{template = "https://nixos.wiki/index.php?search={searchTerms}";}];
|
|
icon = "${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg";
|
|
definedAliases = ["@nix" "@nixos" "@nixoswiki"];
|
|
};
|
|
"Arch Wiki" = {
|
|
urls = [{template = "https://wiki.archlinux.org/index.php?search={searchTerms}";}];
|
|
definedAliases = ["@aw" "@arch" "@archwiki"];
|
|
};
|
|
"GitHub" = {
|
|
urls = [{template = "https://github.com/search?q={searchTerms}";}];
|
|
definedAliases = ["@gh" "@git" "@github"];
|
|
};
|
|
"FlatHub" = {
|
|
url = [{template = "https://flathub.org/apps/search?q={searchTerms}";}];
|
|
definedAliases = ["@flat" "@fthub" "@flathub"];
|
|
};
|
|
"NixOS Packages" = {
|
|
urls = [{template = "http://search.nixos.org/packages?channel=unstable&size=50&sort=relevance&type=packages&query={searchTerms}";}];
|
|
icon = "${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg";
|
|
definedAliases = ["@nixpkgs"];
|
|
};
|
|
"PyPI packages" = {
|
|
urls = [{template = "https://pypi.org/search/?q={searchTerms}";}];
|
|
definedAliases = ["@pypi"];
|
|
};
|
|
}
|