dotfiles/.config/nixshell/haskell.nix
2023-12-26 23:38:41 +01:00

9 lines
108 B
Nix

let
pkgs = import <nixpkgs> {};
in
pkgs.mkShell {
buildInputs = with pkgs; [
ghc
];
}