update search engines librewolf, update fish, neovim update
This commit is contained in:
parent
b0c86faf29
commit
7b7afc6798
5 changed files with 46 additions and 31 deletions
|
@ -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
|
||||
|
|
|
@ -20,6 +20,7 @@ in
|
|||
enable = true;
|
||||
shellAliases = {
|
||||
nix-dns = "nixos-rebuild switch --flake .#dns --target-host dns-1 --use-remote-sudo && nixos-rebuild switch --flake .#dns --target-host dns-2 --use-remote-sudo";
|
||||
nix-blarm = "nixos-rebuild switch --flake .#blarm --target-host blarm --use-remote-sudo";
|
||||
cd = "z";
|
||||
};
|
||||
plugins = [
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
programs.nvf.settings.vim = {
|
||||
lsp.enable = true;
|
||||
languages = {
|
||||
enableLSP = true;
|
||||
enableTreesitter = true;
|
||||
nix.enable = true;
|
||||
nix.format.type = "nixfmt";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue