timetracker/shell.nix

18 lines
215 B
Nix
Raw Normal View History

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