adventofcode-2021/flake.nix

11 lines
243 B
Nix
Raw Permalink Normal View History

2021-12-03 02:02:43 +00:00
{
outputs = { nixpkgs, ... }:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
in {
devShell."${system}" =
pkgs.mkShell { buildInputs = with pkgs; [ ghc stylish-haskell ]; };
};
}