SSH into one stable Tailscale node and reach your whole tailnet from it via short per-host functions + sshfs mounts. A riced Arch dev container with sshd, a stateful home, and declarative .env auth. See README.md and ROAMING.md.
38 lines
654 B
Plaintext
38 lines
654 B
Plaintext
# ── arch-dev repo .gitignore ──────────────────────────────────────────────────
|
|
|
|
# Docker build artifacts
|
|
*.tar.gz
|
|
*.tar
|
|
|
|
# Environment / secrets
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
!.env.example
|
|
|
|
# Editor
|
|
.DS_Store
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
|
|
# Workspace contents (bind mount — user's project files, not ours)
|
|
workspace/*
|
|
!workspace/.gitkeep
|
|
|
|
# nvimide: never ship auth material
|
|
authorized_keys
|
|
*.key
|
|
*_rsa
|
|
*_ed25519
|
|
id_*
|
|
ssh_host_*
|
|
|
|
# local-only compose override (external/migrated home volume, etc.)
|
|
docker-compose.override.yml
|