develop#haskell: init profile

This commit is contained in:
Timothy DeHerrera 2021-01-11 20:06:08 -07:00
parent f2aedb889b
commit 0e974ee976
No known key found for this signature in database
GPG key ID: 8985725DB5B0C122

View file

@ -0,0 +1,17 @@
{ pkgs, ... }:
let
inherit (pkgs) ghc;
in
{
environment.systemPackages = [
(ghc.withHoogle
(self: with self; [
cabal2nix
cabal-install
implicit-hie
hie-bios
stack
])
)
];
}