dotfiles/nixos/msi/modules/ocaml.nix

15 lines
177 B
Nix
Raw Normal View History

2024-07-27 14:03:17 +02:00
{ pkgs, config, ... }:
2024-07-22 23:55:51 +02:00
{
2024-07-27 14:03:17 +02:00
home.sessionVariables = {
OPAMROOT = "${config.xdg.cacheHome}/opam";
};
2024-07-22 23:55:51 +02:00
home.packages = with pkgs; [
ocaml
ocamlformat
opam
dune_3
];
}