harmonia-cache

Nix Binary Cache

v3.0.0

Public Key

cache.extremist.software-1:oz09mnwck8nC0QBc1j0bDKAMoyg7oUBeQ0ADXUeHL3w=

Configuration

Command line

nix build \
  --extra-substituters 'https://cache.extremist.software' \
  --extra-trusted-public-keys 'cache.extremist.software-1:oz09mnwck8nC0QBc1j0bDKAMoyg7oUBeQ0ADXUeHL3w='

~/.config/nix/nix.conf or /etc/nix/nix.conf

extra-substituters = https://cache.extremist.software
extra-trusted-public-keys = cache.extremist.software-1:oz09mnwck8nC0QBc1j0bDKAMoyg7oUBeQ0ADXUeHL3w=

NixOS configuration

{
  nix.settings = {
    substituters = [ "https://cache.extremist.software" ];
    trusted-public-keys = [ "cache.extremist.software-1:oz09mnwck8nC0QBc1j0bDKAMoyg7oUBeQ0ADXUeHL3w=" ];
  };
}

flake.nix

{
  nixConfig = {
    extra-substituters = [ "https://cache.extremist.software" ];
    extra-trusted-public-keys = [ "cache.extremist.software-1:oz09mnwck8nC0QBc1j0bDKAMoyg7oUBeQ0ADXUeHL3w=" ];
  };
}

Endpoints

/nix-cache-info Cache metadata
/<hash>.narinfo Package info and signatures
/nar/<hash>.nar NAR archives
/<hash>.ls Package file listing
/log/<drv> Build logs
/version Version info
/health Health check
/metrics Prometheus metrics