harmonia-cache

Nix Binary Cache

v2.1.0

Public Key

subby.blood.pet:1xqRlAxaTPJi/URlleX0ggGECwKzJbX+EVu6xY54wrc=

Configuration

Command line

nix build \
  --extra-substituters 'https://subby.blood.pet' \
  --extra-trusted-public-keys 'subby.blood.pet:1xqRlAxaTPJi/URlleX0ggGECwKzJbX+EVu6xY54wrc='

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

extra-substituters = https://subby.blood.pet
extra-trusted-public-keys = subby.blood.pet:1xqRlAxaTPJi/URlleX0ggGECwKzJbX+EVu6xY54wrc=

NixOS configuration

{
  nix.settings = {
    substituters = [ "https://subby.blood.pet" ];
    trusted-public-keys = [ "subby.blood.pet:1xqRlAxaTPJi/URlleX0ggGECwKzJbX+EVu6xY54wrc=" ];
  };
}

flake.nix

{
  nixConfig = {
    extra-substituters = [ "https://subby.blood.pet" ];
    extra-trusted-public-keys = [ "subby.blood.pet:1xqRlAxaTPJi/URlleX0ggGECwKzJbX+EVu6xY54wrc=" ];
  };
}

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