1
0
Fork 0

update search engines librewolf, update fish, neovim update

This commit is contained in:
Philipp 2025-05-11 18:53:45 +02:00
parent b0c86faf29
commit 7b7afc6798
Signed by: Philipp
GPG key ID: 9EBD8439AFBAB750
5 changed files with 46 additions and 31 deletions

View file

@ -20,6 +20,7 @@ let
"signon.rememberSignons" = true;
"signon.storeWhenAutocompleteOff" = true;
"sidebar.verticalTabs" = true;
"general.useragent.compatMode.firefox" = true;
};
defaultExtensions = with inputs.firefox-addons.packages."x86_64-linux"; [
bitwarden
@ -30,6 +31,7 @@ let
seventv
];
defaultSearch = {
force = true; # We need this, else the build fails
privateDefault = "SearXNG";
default = "SearXNG";
engines = {
@ -42,7 +44,7 @@ let
"My Nixos Packages" = {
urls = [ { template = "https://mynixos.com/search?q={searchTerms}"; } ];
icon = "${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg";
definedAliases = [ "@np" ];
definedAliases = [ "@mnp" ];
};
"NixOS Wiki" = {
@ -51,6 +53,20 @@ let
updateInterval = 24 * 60 * 60 * 1000;
definedAliases = [ "@nw" ];
};
"NixOS Packages" = {
url = [ { template = "https://search.nixos.org/packages?query={searchTerms}"; } ];
icon = "https://wiki.nixos.org/favicon.ico";
updateInterval = 24 * 60 * 60 * 1000;
definedAliases = [ "@np" ];
};
"NixOS Options" = {
url = [ { template = "https://search.nixos.org/options?query={searchTerms}"; } ];
icon = "https://wiki.nixos.org/favicon.ico";
updateInterval = 24 * 60 * 60 * 1000;
definedAliases = [ "@no" ];
};
};
};
in