add shell.nix
This commit is contained in:
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
|
||||
'';
|
||||
}
|
Reference in New Issue
Block a user