about summary refs log tree commit diff
path: root/users/aspen/system/home/modules/development/ocaml.nix
{ config, lib, pkgs, ... }:

{
  home.packages = with pkgs; [
    ocaml

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

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