-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
71 lines (59 loc) · 1.32 KB
/
Copy path.gitignore
File metadata and controls
71 lines (59 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# --- Nix Build Artifacts ---
# Symlinks created when you run 'nix build' or 'nixos-rebuild build'
result
result-*
repl-result
# --- Security & Secrets (CRITICAL) ---
# Never commit environment files containing keys (like Gemini/OpenAI)
.env
.env.*
!.env.example
*.pem
*.key
# SSH & GPG - Just in case you accidentally copy them here
id_rsa
id_ed25519
secring.gpg
# History files (Shell/REPL history often contains secrets)
.bash_history
.zsh_history
.python_history
.node_repl_history
# --- Home Manager & NixOS Backups ---
# 'backupFileExtension = "backup"' is configured in flake.nix.
# These files are excluded to avoid cluttering the repository.
*.backup
*.bck
*.old
*.orig
# --- Editor Junk ---
# Vim/Neovim (LazyVim)
*.swp
*.swo
.netrwhist
session.vim
# VS Code (User Settings)
.vscode/
!.vscode/extensions.json
!.vscode/settings.json # Uncomment if you WANT to share project settings
# --- Language Specific Junk (Based on your dev.nix) ---
# Node.js
node_modules/
npm-debug.log
# Rust
target/
Cargo.lock # Keep this ONLY if you are building a specific Rust app here. For a config repo, it's usually noise.
# Python
__pycache__/
*.pyc
.venv/
venv/
# Go
bin/
# --- Direnv ---
# The cached shell environment
.direnv/
# NOTE: Usually you COMMIT .envrc, but IGNORE the .env file it loads.
# Centralized user info
.envrc
*.original.md