nixos-config/shells/java.nix

11 lines
128 B
Nix

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