harmonia-cache

Nix Binary Cache

v3.0.0

Public Key

cache.horizon-haskell.net-1:bckMqFgetQ8zVvFbG/rsnnmbWR5qMVJ6nUA6TtMFGC0=

Configuration

Command line

nix build \
  --extra-substituters 'https://cache.horizon-haskell.net' \
  --extra-trusted-public-keys 'cache.horizon-haskell.net-1:bckMqFgetQ8zVvFbG/rsnnmbWR5qMVJ6nUA6TtMFGC0='

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

extra-substituters = https://cache.horizon-haskell.net
extra-trusted-public-keys = cache.horizon-haskell.net-1:bckMqFgetQ8zVvFbG/rsnnmbWR5qMVJ6nUA6TtMFGC0=

NixOS configuration

{
  nix.settings = {
    substituters = [ "https://cache.horizon-haskell.net" ];
    trusted-public-keys = [ "cache.horizon-haskell.net-1:bckMqFgetQ8zVvFbG/rsnnmbWR5qMVJ6nUA6TtMFGC0=" ];
  };
}

flake.nix

{
  nixConfig = {
    extra-substituters = [ "https://cache.horizon-haskell.net" ];
    extra-trusted-public-keys = [ "cache.horizon-haskell.net-1:bckMqFgetQ8zVvFbG/rsnnmbWR5qMVJ6nUA6TtMFGC0=" ];
  };
}

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