Files
timetracker/shell.nix
2026-01-29 12:56:45 +01:00

19 lines
208 B
Nix

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