timetracker/shell.nix

15 lines
189 B
Nix
Raw Normal View History

2024-08-08 07:27:51 +00:00
{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
buildInputs = with pkgs; [
nodejs
(poetry.override { python3 = python312; })
];
shellHook = ''
poetry install
'';
}