fix(cache): Use right nix option for client cache settings

This commit is contained in:
sinavir 2025-01-22 12:41:47 +01:00
parent a03fe42131
commit ac3cd0a505
No known key found for this signature in database

View file

@ -13,6 +13,6 @@ in
{ caches }:
{
trusted-substituters = builtins.map (cache: cache-info.${cache}.url) caches;
substituters = builtins.map (cache: cache-info.${cache}.url) caches;
trusted-public-keys = builtins.map (cache: cache-info.${cache}.public-key) caches;
}