about summary refs log tree commit diff
path: root/users/aspen/system/home/modules/development/ocaml.nix
blob: 5dcdd8980e47fe4e69512174d5984f77a581d1e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ config, lib, pkgs, ... }:

{
  home.packages = with pkgs; [
    ocaml

    # ocamlPackages.merlin
    # ocamlPackages.utop
    # ocamlPackages.ocp-indent
    # ocamlPackages.ocamlformat
  ];

  programs.opam = {
    enable = true;
    enableZshIntegration = true;
  };
}