about summary refs log tree commit diff stats
path: root/nix-conf/home/includes/clojure.nix
blob: 3915ab3815af4841d755da8f1900c2fd0c02c8c0 (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
24
25
{
  config,
  pkgs,
  lib,
  ...
}:
let
  inherit (lib) optionals;
in
{
  home.packages =
    with pkgs;
    [
      babashka
      clj-kondo
      clojure-lsp
      emacs-lsp-booster
      jet
      maven
      neil
    ]
    # TODO these are here because of the custom versions in otm.nix
    # but there should be a better way
    ++ optionals stdenv.isLinux [ leiningen clojure ];
}