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

12 lines
222 B
Nix

{ pkgs, ... }:
{
home-manager.users.adrielus.home = {
file.".ghci".source = ./ghci;
packages = with pkgs;
[ ghc ghcid hlint cabal-install stack ]
++ (with haskellPackages; [ hoogle hpack ]);
};
}