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

19 lines
392 B
Nix
Raw Normal View History

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 ]
++ (with haskellPackages; [ hoogle hpack ]);
2020-04-18 09:04:12 +02:00
};
}