nix-config/modules2/browsers/librewolf/search-engines.nix
Oliver Davies 4271993f2f
All checks were successful
/ check (push) Successful in 1m41s
Move firefox/librewolf configuration
2025-07-27 23:47:39 +01:00

19 lines
570 B
Nix

{
flake.modules.homeManager.gui.programs.librewolf.profiles.default.search.engines = {
# TODO: Drupal.org users.
# TODO: Mastodon.
# TODO: GitHub.
# TODO: Forgejo.
drupal_projects = {
name = "Drupal.org projects";
urls = [ { template = "https://www.drupal.org/project/{searchTerms}"; } ];
definedAliases = [ "@dp" ];
};
nixvim = {
name = "Nixvim options search";
urls = [ { template = "https://nix-community.github.io/nixvim/search/?query={searchTerms}"; } ];
definedAliases = [ "@nxv" ];
};
};
}