From 1f4a3929d072e38560994f54c0650b44c8b7befe Mon Sep 17 00:00:00 2001 From: Christoph Hollizeck Date: Mon, 30 Dec 2024 16:49:29 +0100 Subject: [PATCH] java: add minimalistic java shell --- shells/java.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 shells/java.nix diff --git a/shells/java.nix b/shells/java.nix new file mode 100644 index 0000000..4935c85 --- /dev/null +++ b/shells/java.nix @@ -0,0 +1,11 @@ +{ + pkgs, + mkShell, + ... +}: +mkShell { + # Create your shell + nativeBuildInputs = with pkgs; [ + jdt-language-server + ]; +}