1
Fork 0

feat: custom vim syntax for my project, printer drivers, etc

This commit is contained in:
Matei Adriel 2022-04-21 14:09:11 +03:00
parent de269054c2
commit b7d4d80c1b
11 changed files with 73 additions and 6 deletions
modules/dev/haskell

View file

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