blob: 3e5ccddbb381eacb8e566c36851c8d37242e8559 (
plain) (
tree)
|
|
{
description = "Development shell for aoc2024";
inputs = {
flake-utils = {
url = "github:numtide/flake-utils";
};
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in {
devShells.default = pkgs.mkShell {
buildInputs = [
pkgs.elixir
pkgs.elixir-ls
];
};
});
}
|