summary refs log tree commit diff stats
path: root/user/settings/development/clojure.nix
blob: c85bf86991bc320a4c5e701fb5697243af72fc61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ config
, pkgs
, ...
}: {
  home.packages = with pkgs; [
    clojure
    cljfmt
  ];
  programs.emacs.extraPackages = epkgs: (with epkgs; [
    cider
  ]);
}