chore: Add Nix development state to gitignore

Ignore local Nix development directories and files:
- .nix-mix/ - Mix cache
- .nix-hex/ - Hex cache
- .nix-postgres/ - PostgreSQL data directory
- .nix-redis/ - Redis data directory
- .nix-services-started - Service flag file

These are created by the Nix dev shell and should not be
committed to the repository.
This commit is contained in:
Graham McIntire 2026-02-07 12:40:18 -06:00
parent dfa334650f
commit 8fa79caccc
No known key found for this signature in database

7
.gitignore vendored
View file

@ -1,6 +1,13 @@
# Development worktrees
.worktrees/
# Nix development environment state
.nix-mix/
.nix-hex/
.nix-postgres/
.nix-redis/
.nix-services-started
# The directory Mix will write compiled artifacts to.
/_build/