{ pkgs, ... }: pkgs.mkShell { packages = with pkgs; [ jdk17 ]; shellHook = '' export JAVA_HOME=${pkgs.jdk17.home} ''; }