Files
zhs/shell.nix
2024-11-17 16:38:26 +01:00

8 lines
116 B
Nix

{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
packages = with pkgs; [
stack
haskell-language-server
];
}