harmonia-cache

Nix Binary Cache

v3.1.0

Public Key

nix-cache.pesekmudra.cz:JMgWdt6A84cZmdM1+eTAoSs2YY7meIKgwb2ZEf0o2RM=

Configuration

Command line

nix build \
  --extra-substituters 'https://nix-cache.pesekmudra.cz' \
  --extra-trusted-public-keys 'nix-cache.pesekmudra.cz:JMgWdt6A84cZmdM1+eTAoSs2YY7meIKgwb2ZEf0o2RM='

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

extra-substituters = https://nix-cache.pesekmudra.cz
extra-trusted-public-keys = nix-cache.pesekmudra.cz:JMgWdt6A84cZmdM1+eTAoSs2YY7meIKgwb2ZEf0o2RM=

NixOS configuration

{
  nix.settings = {
    substituters = [ "https://nix-cache.pesekmudra.cz" ];
    trusted-public-keys = [ "nix-cache.pesekmudra.cz:JMgWdt6A84cZmdM1+eTAoSs2YY7meIKgwb2ZEf0o2RM=" ];
  };
}

flake.nix

{
  nixConfig = {
    extra-substituters = [ "https://nix-cache.pesekmudra.cz" ];
    extra-trusted-public-keys = [ "nix-cache.pesekmudra.cz:JMgWdt6A84cZmdM1+eTAoSs2YY7meIKgwb2ZEf0o2RM=" ];
  };
}

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