timetracker/shell.nix

18 lines
215 B
Nix

{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
buildInputs = with pkgs; [
nodejs
python3
poetry
];
shellHook = ''
python -m venv .venv
. .venv/bin/activate
poetry install
'';
}