add shell.nix

This commit is contained in:
Lukáš Kucharczyk 2024-08-08 09:27:51 +02:00
parent a9a430f856
commit 1cd0a8c0fb
Signed by: lukas
SSH Key Fingerprint: SHA256:vMuSwvwAvcT6htVAioMP7rzzwMQNi3roESyhv+nAxeg
1 changed files with 14 additions and 0 deletions

14
shell.nix Normal file
View File

@ -0,0 +1,14 @@
{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
buildInputs = with pkgs; [
nodejs
(poetry.override { python3 = python312; })
];
shellHook = ''
poetry install
'';
}