No description
  • Go 87%
  • Nix 10.9%
  • HTML 1.4%
  • PLpgSQL 0.4%
  • Shell 0.3%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
github-actions[bot] 76cb73a999
Merge pull request #458 from Mic92/dependabot/go_modules/gomod-0881387378
build(deps): bump modernc.org/sqlite from 1.54.0 to 1.55.0 in the gomod group
2026-08-06 11:11:35 +00:00
.github dependabot: group updates per ecosystem 2026-07-09 09:14:25 +02:00
api server,client: add server-side max NAR size limit 2026-07-19 13:06:31 +02:00
bin release: handle version prefix more gracefully 2026-01-07 23:07:26 +00:00
client server,client: report size-limit skips as metrics 2026-07-19 13:38:35 +02:00
cmd cmd: extract shared subcommand setup into cmdutil 2026-07-08 21:12:03 +02:00
cmdutil cmd: extract shared subcommand setup into cmdutil 2026-07-08 21:12:03 +02:00
hook tests: extract validator and worker test helpers 2026-07-08 21:21:02 +02:00
nix update vendorHash 2026-08-04 08:14:47 +00:00
ratelimit client: add adaptive rate limiting for S3 and server requests 2026-02-06 13:15:59 +01:00
server server,client: report size-limit skips as metrics 2026-07-19 13:38:35 +02:00
.envrc replace minio with rustfs 2025-12-09 23:13:48 +01:00
.gitignore chore(gitignore): adopt the official Nix template 2026-06-28 10:48:41 +02:00
.golangci.yml chore: fix pre-existing golangci-lint warnings in client/cmdutil/cmd 2026-05-10 14:13:47 +02:00
.goreleaser.yaml Replace fire-and-forget post-build-hook with persistent queue 2026-03-25 23:41:45 +01:00
.mergify.yml add mergify 2024-10-27 14:28:58 +01:00
.sqlfluff sqlfluff: disable for query.sql 2025-08-31 21:31:58 +02:00
CONTRIBUTING.md docs: replace stale process-compose dev setup with test-driven workflow 2026-07-09 09:54:29 +02:00
flake.lock build(deps): bump treefmt-nix in the nix group across 1 directory 2026-08-03 09:21:04 +00:00
flake.nix feat(nix): add Darwin auto-upload module 2026-07-13 15:33:54 +02:00
go.mod build(deps): bump modernc.org/sqlite in the gomod group 2026-08-04 08:13:09 +00:00
go.sum build(deps): bump modernc.org/sqlite in the gomod group 2026-08-04 08:13:09 +00:00
LICENSE add MIT license 2025-11-06 13:26:13 +01:00
README.md README: remove FileHash/FileSize from documentation 2026-08-03 10:21:53 +02:00
sqlc.yml sqlc: fix schema path 2024-12-09 11:02:02 +01:00

niks3 logo

S3-backed Nix binary cache with garbage collection

The idea is to have all reads be handled by the s3 cache (which itself can be high-available) and have a gc server that tracks all uploads to the cache and runs periodic garbage collection on s3 cache. Since writes to a binary cache are often not as critical as reads, we can vastly simplify the operational complexity of the GC server, i.e. only running one instance next to the CI infrastructure.

Architecture

Write path

flowchart LR
    niks3cli[niks3 CLI] -->|request upload| niks3[niks3 Server]
    niks3 -->|presigned S3 URLs| niks3cli
    niks3cli -->|PUT NAR + narinfo| s3[(S3 Bucket)]
    niks3 -->|track references| db[(PostgreSQL)]

The niks3 CLI requests an upload from the server, which returns pre-signed S3 URLs. The client uploads NAR files and narinfo directly to S3. The server tracks references in PostgreSQL for garbage collection.

Read path

flowchart LR
    nix[Nix Client] -->|read NAR + narinfo| s3[(S3 Bucket)]

Nix clients read directly from S3 (or a CDN in front of it) without going through niks3. This allows the read path to scale independently and remain highly available.

Read proxy (optional)

flowchart LR
    nix[Nix Client] -->|read request| niks3[niks3 Server]
    niks3 -->|fetch on behalf| s3[(S3 Bucket)]

For private S3 buckets, niks3 can proxy read requests from Nix clients to S3 using its own credentials. Enable with --enable-read-proxy. See the Private S3 Buckets wiki page.

Features

Binary Cache Protocol Support

niks3 implements the Nix binary cache specification with the following features:

  • Cryptographic signing: NAR signatures using Ed25519 keys (compatible with nix key generate-secret)
  • NAR files (nar/): Compressed with zstd, stored in S3
  • Narinfo files (.narinfo): Metadata with cryptographic signatures
    • StorePath, URL, Compression, NarHash, NarSize
    • References, Deriver
    • Signatures (Sig fields)
    • CA field for content-addressed derivations
  • Build logs (log/): Compressed build output storage
  • Realisation files (realisations/*.doi): For content-addressed derivations
  • Cache info (nix-cache-info): Automatic generation with WantMassQuery, Priority

Advanced Features

  • Multipart uploads: Efficient handling of large NARs (>100MB)
  • Transactional uploads: Atomic closure uploads with rollback on failure
  • Garbage collection: Reference-tracking GC with configurable retention
  • Parallel uploads: Client parallelizes NAR and metadata uploads

Operational Features

  • Authentication via API tokens (Bearer auth)
  • OIDC authentication for CI/CD systems (GitHub Actions, GitLab CI)
  • S3 credentials via static keys (--s3-access-key / --s3-secret-key) or IAM (--s3-use-iam for IRSA, EC2 instance profiles, ECS task roles)
  • Automatic upload via post-build-hook with crash-safe SQLite queue

Choosing an S3 Provider

niks3 works with any S3-compatible storage provider. We recommend Cloudflare R2 for most users due to zero egress fees and excellent performance.

For detailed pricing comparison and alternative providers, see the S3 Provider Comparison wiki page.

Setup

For complete setup instructions, see the Setup Guide in the wiki.

OIDC Authentication (CI/CD)

niks3 supports OIDC authentication for CI/CD systems. See the wiki for details:

Development

For development setup, database migrations, benchmarks, and contribution guidelines, see CONTRIBUTING.md.

Real-World Deployments

Need commercial support or customization?

For commercial support, please contact Mic92 at [email protected] or reach out to Numtide.