about summary refs log tree commit diff stats
path: root/nix-conf/home/includes/clojure.nix
blob: 85bd2615aa21b82b64e75c108f12c05ae3c8ac24 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  config,
  pkgs,
  lib,
  ...
}:
let
  inherit (lib) optionals;
in
{
  home.packages =
    with pkgs;
    [
      babashka
      clj-kondo
      clojure
      clojure-lsp
      jet
      maven
      neil
    ]
    ++ optionals stdenv.isLinux [ leiningen ];
}