harmonia-cache

Nix Binary Cache

v3.1.0

Public Key

build06.ynh.ovh:bPg6x17ztNd3uMxdclDvdJpTl2pwLiTdHTt9ymTNoMU=

Configuration

Command line

nix build \
  --extra-substituters 'https://build06.ynh.ovh' \
  --extra-trusted-public-keys 'build06.ynh.ovh:bPg6x17ztNd3uMxdclDvdJpTl2pwLiTdHTt9ymTNoMU='

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

extra-substituters = https://build06.ynh.ovh
extra-trusted-public-keys = build06.ynh.ovh:bPg6x17ztNd3uMxdclDvdJpTl2pwLiTdHTt9ymTNoMU=

NixOS configuration

{
  nix.settings = {
    substituters = [ "https://build06.ynh.ovh" ];
    trusted-public-keys = [ "build06.ynh.ovh:bPg6x17ztNd3uMxdclDvdJpTl2pwLiTdHTt9ymTNoMU=" ];
  };
}

flake.nix

{
  nixConfig = {
    extra-substituters = [ "https://build06.ynh.ovh" ];
    extra-trusted-public-keys = [ "build06.ynh.ovh:bPg6x17ztNd3uMxdclDvdJpTl2pwLiTdHTt9ymTNoMU=" ];
  };
}

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