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

12 lines
327 B
Nix
Raw Normal View History

2020-04-18 09:04:12 +02:00
{ 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;
2020-10-07 10:11:03 +02:00
[ ghc ghcid hlint cabal-install snack stack ]
2020-05-10 19:48:52 +02:00
++ (with haskellPackages; [ brittany hoogle hpack pointfree ]);
2020-04-18 09:04:12 +02:00
};
}