2020-04-18 09:04:12 +02:00
|
|
|
{ pkgs, ... }:
|
2021-07-18 01:58:38 +02:00
|
|
|
{
|
2022-05-26 18:33:38 +02:00
|
|
|
# Use more recent ghc versions
|
|
|
|
# nixpkgs.overlays = [
|
|
|
|
# (self: super: {
|
|
|
|
# haskell.compiler.ghc902 = self.unstable.haskell.compiler.ghc902;
|
|
|
|
# })
|
|
|
|
# ];
|
|
|
|
|
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 ]
|
|
|
|
|
2022-04-21 13:09:11 +02:00
|
|
|
++ (with haskellPackages; [ hoogle hpack ]);
|
2020-04-18 09:04:12 +02:00
|
|
|
};
|
|
|
|
}
|