Put nix shell on the project root

This commit is contained in:
Yorick Barbanneau 2023-12-22 13:35:07 +01:00
parent 6e2d2c2a7b
commit 5ebf2d9d57
2 changed files with 0 additions and 0 deletions

8
shell.nix Normal file
View file

@ -0,0 +1,8 @@
with (import <nixpkgs> {});
mkShell {
buildInputs = [
# Defines a python + set of packages.
python3
];
}