Get a Haskell development environment up and running quickly. Thanks to Nix, this template is optimized for a fully reproducible and friendly development environment. It is based on:
- Nix + Flakes (via
github:srid/haskell-flake) + GHC 9.4 - VSCode + HLS
- fourmolu autoformatting
- Relude as Prelude.
.hlint.yamlis from relude
- Devshell commands are provided via just; run
justin devshell.
If you have an existing Haskell project, you should probably use https://github.com/srid/haskell-flake instead.
tldr: Install Nix, enable Flakes, open in VSCode and run just run.
Full instructions: https://srid.ca/haskell-template/start
Recommended dev environment setup: https://nixos.asia/en/direnv
- Run
nix flake updateto update all flake inputs. - Run
nix run github:srid/nixcito build all outputs. - Run
just fmtin nix shell to autoformat the project. This uses treefmt. - Run
just docsto start Hoogle with packages in your cabal file. - Run the application without installing:
nix run github:srid/haskell-template(ornix run .from checkout) - Common workflows
- Adding library dependencies in Nix: https://zero-to-flakes.com/haskell-flake/dependency
- Adding tests: https://srid.ca/haskell-template/tests
Questions? Ideas? Suggestions? Join our NixOS Zulip or post in Github Discussions.