dotfiles/modules/haskell.nix

16 lines
221 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
{
home.packages = with pkgs; [
ghc
stack
stylish-haskell
haskellPackages.ghcide
haskellPackages.hoogle
];
2021-02-18 17:07:45 -05:00
home.file.".ghci".text = ''
:set prompt "λ> "
'';
}