mio-ops/profiles/haskell-dev.nix
2021-11-16 17:53:38 +10:00

14 lines
253 B
Nix

# Configuration for Haskell development
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs.haskellPackages; [
cabal-install # Haskell software automation
ghc # Glasgow Haskell Compiler
hlint # Haskell source linter
];
}