woohoo
This commit is contained in:
parent
58800c1a05
commit
1d5712d898
24 changed files with 253 additions and 278 deletions
|
@ -61,7 +61,10 @@ in
|
|||
order = [
|
||||
"DuckDuckGo"
|
||||
"Google (udm14)"
|
||||
"YouTube"
|
||||
"Codeberg"
|
||||
"GitHub"
|
||||
"Catppuccin Ports"
|
||||
"ProtonDB"
|
||||
"Nix Packages"
|
||||
"Nix Options"
|
||||
|
@ -71,6 +74,7 @@ in
|
|||
"Modrinth Modpacks"
|
||||
"Modrinth Plugins"
|
||||
"Modrinth Datapacks"
|
||||
"CurseForge (Minecraft)"
|
||||
];
|
||||
engines = {
|
||||
"Bing".metaData.hidden = true;
|
||||
|
@ -88,6 +92,14 @@ in
|
|||
"@udm14"
|
||||
];
|
||||
};
|
||||
"YouTube" = {
|
||||
urls = [ { template = "https://www.youtube.com/results?search_query={searchTerms}"; } ];
|
||||
iconUpdateURL = "https://www.youtube.com/favicon.ico";
|
||||
updateInterval = 24 * 60 * 60 * 1000; # every day
|
||||
definedAliases = [
|
||||
"@yt"
|
||||
];
|
||||
};
|
||||
"Nix Packages" = {
|
||||
urls = [
|
||||
{
|
||||
|
@ -144,6 +156,14 @@ in
|
|||
"@nw"
|
||||
];
|
||||
};
|
||||
"Codeberg" = {
|
||||
urls = [ { template = "https://codeberg.org/explore/repos?q={searchTerms}"; } ];
|
||||
iconUpdateURL = "https://codeberg.org/assets/img/favicon.png";
|
||||
updateInterval = 24 * 60 * 60 * 1000; # every day
|
||||
definedAliases = [
|
||||
"@cb"
|
||||
];
|
||||
};
|
||||
"GitHub" = {
|
||||
urls = [ { template = "https://github.com/search?q={searchTerms}"; } ];
|
||||
iconUpdateURL = "https://github.com/favicon.ico";
|
||||
|
@ -160,8 +180,16 @@ in
|
|||
"@pd"
|
||||
];
|
||||
};
|
||||
"Catppuccin Ports" = {
|
||||
urls = [ { template = "https://catppuccin.com/ports/?q={searchTerms}"; } ];
|
||||
iconUpdateURL = "https://catppuccin.com/favicon.png";
|
||||
updateInterval = 24 * 60 * 60 * 1000; # every day
|
||||
definedAliases = [
|
||||
"@cat"
|
||||
];
|
||||
};
|
||||
"Modrinth Mods" = {
|
||||
urls = [ { template = "https://modrinth.com/mod/{searchTerms}"; } ];
|
||||
urls = [ { template = "https://modrinth.com/mods?q={searchTerms}"; } ];
|
||||
iconUpdateURL = "https://modrinth.com/favicon.ico";
|
||||
updateInterval = 24 * 60 * 60 * 1000; # every day
|
||||
definedAliases = [
|
||||
|
@ -169,7 +197,7 @@ in
|
|||
];
|
||||
};
|
||||
"Modrinth Modpacks" = {
|
||||
urls = [ { template = "https://modrinth.com/modpack/{searchTerms}"; } ];
|
||||
urls = [ { template = "https://modrinth.com/modpacks?q={searchTerms}"; } ];
|
||||
iconUpdateURL = "https://modrinth.com/favicon.ico";
|
||||
updateInterval = 24 * 60 * 60 * 1000; # every day
|
||||
definedAliases = [
|
||||
|
@ -177,7 +205,7 @@ in
|
|||
];
|
||||
};
|
||||
"Modrinth Plugins" = {
|
||||
urls = [ { template = "https://modrinth.com/plugin/{searchTerms}"; } ];
|
||||
urls = [ { template = "https://modrinth.com/plugins?q={searchTerms}"; } ];
|
||||
iconUpdateURL = "https://modrinth.com/favicon.ico";
|
||||
updateInterval = 24 * 60 * 60 * 1000; # every day
|
||||
definedAliases = [
|
||||
|
@ -185,13 +213,21 @@ in
|
|||
];
|
||||
};
|
||||
"Modrinth Datapacks" = {
|
||||
urls = [ { template = "https://modrinth.com/datapack/{searchTerms}"; } ];
|
||||
urls = [ { template = "https://modrinth.com/datapacks?q={searchTerms}"; } ];
|
||||
iconUpdateURL = "https://modrinth.com/favicon.ico";
|
||||
updateInterval = 24 * 60 * 60 * 1000; # every day
|
||||
definedAliases = [
|
||||
"@md"
|
||||
];
|
||||
};
|
||||
"CurseForge (Minecraft)" = {
|
||||
urls = [ { template = "https://www.curseforge.com/minecraft/search?search={searchTerms}"; } ];
|
||||
iconUpdateURL = "https://www.curseforge.com/favicon.ico";
|
||||
updateInterval = 24 * 60 * 60 * 1000; # every day
|
||||
definedAliases = [
|
||||
"@cf"
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
programs.neovide = {
|
||||
enable = true;
|
||||
settings = {
|
||||
font = {
|
||||
normal = [ "ComicCodeLigatures Nerd Font" ];
|
||||
size = 12;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -80,7 +80,6 @@
|
|||
"applications:vesktop.desktop"
|
||||
"applications:steam.desktop"
|
||||
"applications:org.prismlauncher.PrismLauncher.desktop"
|
||||
"applications:neovide.desktop"
|
||||
"applications:kitty.desktop"
|
||||
"applications:org.kde.dolphin.desktop"
|
||||
];
|
||||
|
|
|
@ -92,7 +92,7 @@ rec {
|
|||
|
||||
# Python
|
||||
ms-python.python
|
||||
ms-python.vscode-pylance
|
||||
(ms-python.vscode-pylance.override { meta.license = [ "MIT" ]; })
|
||||
ms-python.debugpy
|
||||
ms-python.black-formatter
|
||||
charliermarsh.ruff
|
||||
|
@ -196,7 +196,7 @@ rec {
|
|||
mkhl.direnv
|
||||
ms-vsliveshare.vsliveshare
|
||||
ms-azuretools.vscode-docker
|
||||
ms-vscode-remote.remote-ssh
|
||||
(ms-vscode-remote.remote-ssh.override { meta.license = [ "MIT" ]; })
|
||||
pkgs.vscode-extensions.ms-vscode-remote.remote-ssh-edit
|
||||
ms-vscode.remote-server
|
||||
ms-vscode.remote-explorer
|
||||
|
@ -208,8 +208,8 @@ rec {
|
|||
d-koppenhagen.file-tree-to-text-generator
|
||||
|
||||
# Copilot
|
||||
github.copilot
|
||||
github.copilot-chat
|
||||
(github.copilot.override { meta.license = [ "MIT" ]; })
|
||||
(github.copilot-chat.override { meta.license = [ "MIT" ]; })
|
||||
];
|
||||
userSettings = {
|
||||
"DO-NOT-EDIT-1" =
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue