add seaches to nix pkgs and options as well as hm options to glance search

This commit is contained in:
2025-10-15 08:34:28 -05:00
parent ce3b8bf27a
commit da7c4fe652
3 changed files with 27 additions and 11 deletions

View File

@@ -186,20 +186,35 @@ in
new-tab = true;
bangs = [
{
title = "YouTube";
title = "youtube";
shortcut = "!y";
url = "https://www.youtube.com/results?search_query={QUERY}";
}
{
title = "Google";
title = "google";
shortcut = "!g";
url = "https://www.google.com/search?q={QUERY}";
}
{
title = "Github";
title = "github";
shortcut = "!gh";
url = "https://github.com/search?q={QUERY}&type=repositories";
}
{
title = "nixos options";
shortcut = "!no";
url = "https://search.nixos.org/options?channel=25.05&query={QUERY}";
}
{
title = "nixos packages";
shortcut = "!np";
url = "https://search.nixos.org/packages?channel=25.05&query={QUERY}";
}
{
title = "home-manager options";
shortcut = "!hm";
url = "https://home-manager-options.extranix.com/?query={QUERY}&release=release-25.05";
}
];
}
{