Files
timetracker/shell.nix
T
2026-06-09 09:31:38 +02:00

20 lines
217 B
Nix

{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
buildInputs = with pkgs; [
nodejs
python3
uv
ruff
pnpm
];
shellHook = ''
uv venv --clear
. .venv/bin/activate
uv sync
'';
}