Add java support

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2025-01-06 17:50:55 +02:00
parent 31f3364f06
commit 52f962e3b5
8 changed files with 55 additions and 20 deletions

View File

@@ -0,0 +1,10 @@
{ pkgs, ... }:
pkgs.mkShell {
packages = with pkgs; [
jdk17
];
shellHook = ''
export JAVA_HOME=${pkgs.jdk17.home}
'';
}