harmonia-cache

Nix Binary Cache

v3.2.0

Public Key

selene-cache:JFjUG4uqg/THSGKrrg/ZVFsToQBKYuQrMmCIelIzRtk=

Configuration

Command line

nix build \
  --extra-substituters 'https://nix-cache.nogard.org' \
  --extra-trusted-public-keys 'selene-cache:JFjUG4uqg/THSGKrrg/ZVFsToQBKYuQrMmCIelIzRtk='

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

extra-substituters = https://nix-cache.nogard.org
extra-trusted-public-keys = selene-cache:JFjUG4uqg/THSGKrrg/ZVFsToQBKYuQrMmCIelIzRtk=

NixOS configuration

{
  nix.settings = {
    substituters = [ "https://nix-cache.nogard.org" ];
    trusted-public-keys = [ "selene-cache:JFjUG4uqg/THSGKrrg/ZVFsToQBKYuQrMmCIelIzRtk=" ];
  };
}

flake.nix

{
  nixConfig = {
    extra-substituters = [ "https://nix-cache.nogard.org" ];
    extra-trusted-public-keys = [ "selene-cache:JFjUG4uqg/THSGKrrg/ZVFsToQBKYuQrMmCIelIzRtk=" ];
  };
}

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