1
Fork 0
satellite/modules/dev/haskell/default.nix
2022-05-26 19:33:38 +03:00

19 lines
392 B
Nix

{ pkgs, ... }:
{
# Use more recent ghc versions
# nixpkgs.overlays = [
# (self: super: {
# haskell.compiler.ghc902 = self.unstable.haskell.compiler.ghc902;
# })
# ];
home-manager.users.adrielus.home = {
file.".ghci".source = ./ghci;
packages = with pkgs;
[ ghc ghcid hlint cabal-install stack ]
++ (with haskellPackages; [ hoogle hpack ]);
};
}