mio-ops/profiles/haskell-dev.nix
2021-03-03 15:52:21 +10:00

14 lines
277 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
];
}