Basic API request to DeepL

This commit is contained in:
Markus Scully 2024-12-04 19:44:20 +02:00
parent 3a9f283e99
commit d2892b1f82
12 changed files with 1401 additions and 70 deletions

View file

@ -13,10 +13,10 @@ let
};
in
{
# https://devenv.sh/basics/
env.GREET = "devenv";
# https://devenv.sh/packages/
dotenv.enable = true;
packages = [
pkgs-unstable.git
pkgs-unstable.rustup
@ -25,7 +25,6 @@ in
pkgs-unstable.jq
];
# https://devenv.sh/languages/
languages.rust = {
channel = "nightly";
components = [
@ -38,6 +37,7 @@ in
};
enterShell = ''
rustup default nightly
rustup component add clippy
'';