1
Fork 0
satellite/modules/dev/haskell/default.nix
2020-05-10 20:48:52 +03:00

12 lines
331 B
Nix

{ pkgs, ... }:
let hie = pkgs.all-hies.selection { selector = p: { inherit (p) ghc865; }; };
in {
home-manager.users.adrielus.home = {
file.".ghci".source = ./ghci;
packages = with pkgs;
[ ghc ghcid hlint cabal-install snack stack hie ]
++ (with haskellPackages; [ brittany hoogle hpack pointfree ]);
};
}