nixos-config/shells/java/default.nix
Christoph Hollizeck 9e1d870b63
Some checks failed
/ test (push) Has been cancelled
website: try if this works
2024-12-31 14:02:57 +01:00

14 lines
149 B
Nix

{
pkgs,
mkShell,
...
}:
mkShell {
# Create your shell
nativeBuildInputs = with pkgs; [
jdt-language-server
zulu8
zulu21
];
}