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