1
Fork 0
satellite/modules/dev/haskell/default.nix
2021-07-18 02:58:38 +03:00

12 lines
316 B
Nix

{ pkgs, ... }:
# let hie = pkgs.all-hies.selection { selector = p: { inherit (p) ghc865; }; };
{
home-manager.users.adrielus.home = {
file.".ghci".source = ./ghci;
packages = with pkgs;
[ ghc ghcid hlint cabal-install snack stack ]
++ (with haskellPackages; [ brittany hoogle hpack ]);
};
}