dotfiles/modules/home/cli/development/tooling/haskell/default.nix
2025-10-01 19:51:55 -05:00

17 lines
231 B
Nix
Executable file

{
pkgs,
...
}:
{
home.packages = builtins.attrValues {
inherit (pkgs.haskellPackages)
cabal-install
haskell-language-server
fourmolu
cabal-fmt
hlint
cabal-gild
ghc
;
};
}