Fast and reliable binary cache for Nix packages
Add these trusted public keys to your Nix configuration to verify packages from this cache:
Use this cache for a single Nix command:
nix build --substituters 'https://niks3-cache.rongyi.dev' \
--trusted-public-keys 'niks3-cache.rongyi.dev-1:+HDU1qSD6oy+zrC3lg3mrQUlpRVngKDbNGqpBi+/ImU=' \
nixpkgs#hello
Add to your ~/.config/nix/nix.conf or /etc/nix/nix.conf:
extra-substituters = https://niks3-cache.rongyi.dev
extra-trusted-public-keys = niks3-cache.rongyi.dev-1:+HDU1qSD6oy+zrC3lg3mrQUlpRVngKDbNGqpBi+/ImU=
Add to your /etc/nixos/configuration.nix:
nix.settings = {
extra-substituters = [ "https://niks3-cache.rongyi.dev" ];
extra-trusted-public-keys = [
"niks3-cache.rongyi.dev-1:+HDU1qSD6oy+zrC3lg3mrQUlpRVngKDbNGqpBi+/ImU="
];
};
Add to your flake.nix:
{
nixConfig = {
extra-substituters = [ "https://niks3-cache.rongyi.dev" ];
extra-trusted-public-keys = [
"niks3-cache.rongyi.dev-1:+HDU1qSD6oy+zrC3lg3mrQUlpRVngKDbNGqpBi+/ImU="
];
};
# ... rest of your flake
}
Note: Using extra-* settings will add this cache alongside the default cache.nixos.org cache.
This binary cache is powered by niks3, a garbage-collected Nix binary cache backed by S3-compatible storage.