Add shell.nix

This commit is contained in:
Florian RICHER 2024-02-15 21:09:45 +01:00
parent 793c479cf0
commit e0f052b653

4
shell.nix Normal file
View file

@ -0,0 +1,4 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [ elixir_1_16 git inotify-tools ];
}