[firefox] Add Google Scholar alias

This commit is contained in:
Tibo De Peuter 2025-10-26 16:24:21 +01:00
parent e1b5cb2ea4
commit 1f5facd346
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2
2 changed files with 11 additions and 0 deletions

View file

@ -59,6 +59,7 @@ in {
vifm # File manager vifm # File manager
zathura # PDF viewer zathura # PDF viewer
zellij # Tmux + screen alternative zellij # Tmux + screen alternative
zotero
zsh zsh
zsh-autosuggestions zsh-autosuggestions
zsh-syntax-highlighting zsh-syntax-highlighting

View file

@ -101,6 +101,16 @@ in {
icon = "${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg"; icon = "${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg";
definedAliases = [ "@no" ]; definedAliases = [ "@no" ];
}; };
"Google Scholar" = {
urls = [{
template = "https://scholar.google.ch/scholar";
params = [
{ name = "q"; value = "{searchTerms}"; }
];
}];
definedAliases = [ "@gs" ];
};
}; };
}; };
}; };