Skip to content

Latest commit

 

History

History
executable file
·
26 lines (20 loc) · 462 Bytes

File metadata and controls

executable file
·
26 lines (20 loc) · 462 Bytes

Java

{ config, pkgs, lib, ... }:
{
  imports = [
    ../../nvim/lsp.nix
  ];

  home.packages = with pkgs; [
    openjdk17
  ];

  <<<modules/home/packages/developing/java>>>
}

Neovim support

nvimLSP.jdtls  = {
  package = pkgs.jdt-language-server;
  config.cmd = ["jdt-language-server" "-data" "${config.home.homeDirectory}/.jdt/workspace"];
};