1
Fork 0
satellite/modules/dev/haskell/default.nix

13 lines
311 B
Nix
Raw Normal View History

2020-04-18 09:04:12 +02:00
{ pkgs, ... }:
2021-07-18 01:58:38 +02:00
# let hie = pkgs.all-hies.selection { selector = p: { inherit (p) ghc865; }; };
{
2020-04-18 09:04:12 +02:00
home-manager.users.adrielus.home = {
file.".ghci".source = ./ghci;
packages = with pkgs;
2021-11-21 19:08:57 +01:00
[ ghc ghcid hlint cabal-install stack ]
2021-07-18 01:58:38 +02:00
++ (with haskellPackages; [ brittany hoogle hpack ]);
2020-04-18 09:04:12 +02:00
};
}