chore: initial project scaffolding

Add project configuration, documentation and development tooling:
- flake.nix dev shell with Go, golangci-lint, turbojpeg
- .envrc sourcing sops-encrypted .secrets.env
- golangci-lint v2 config
- opencode.json MCP + LSP wiring
- AGENTS.md development guidelines
This commit is contained in:
2026-09-18 18:36:19 +01:00
commit b8b2ba8da1
10 changed files with 753 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
use flake
# Load project-local secrets (sops-encrypted, gitignored). Decrypt on the fly
# with this machine's age key so plaintext never touches disk. Requires the
# age key at ~/.config/sops/age/keys.txt.
if [[ -f .secrets.env ]]; then
set -a
eval "$(sops -d --output-type dotenv .secrets.env)"
set +a
fi