nix-config/home/features/devel/java.nix

14 lines
168 B
Nix

# Java and it's sub-Javas (Clojure, etc)
{ pkgs, ... }:
{
home.packages = with pkgs; [
# java
jdk
# clojure
clojure
clojure-lsp
neil
];
}