add shell.nix
This commit is contained in:
parent
a9a430f856
commit
1cd0a8c0fb
14
shell.nix
Normal file
14
shell.nix
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
{
|
||||||
|
pkgs ? import <nixpkgs> { },
|
||||||
|
}:
|
||||||
|
|
||||||
|
pkgs.mkShell {
|
||||||
|
buildInputs = with pkgs; [
|
||||||
|
nodejs
|
||||||
|
(poetry.override { python3 = python312; })
|
||||||
|
];
|
||||||
|
|
||||||
|
shellHook = ''
|
||||||
|
poetry install
|
||||||
|
'';
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user