Add shell.nix for nix users

This commit is contained in:
Zoe Roux 2024-06-30 09:35:05 +00:00
parent 7611da155f
commit ca2452edb6
No known key found for this signature in database

12
shell.nix Normal file
View File

@ -0,0 +1,12 @@
{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
packages = with pkgs; [
nodejs-18_x
nodePackages.yarn
eslint_d
prettierd
jdk11
(jdt-language-server.override { jdk = jdk11; })
];
}