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