From 8fa79caccc37642bf38939f00e19f9a38b3138d4 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Sat, 7 Feb 2026 12:40:18 -0600 Subject: [PATCH] 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. --- .gitignore | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.gitignore b/.gitignore index 0380f68a..2c523f1e 100644 --- a/.gitignore +++ b/.gitignore @@ -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/