11 lines
126 B
Nix
11 lines
126 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
machine.pkgsets.haskell-tools.pkgs = with pkgs; [
|
|
cabal-install
|
|
hlint
|
|
]; # ghcid
|
|
}
|