common/nix: use bagel-cache by default

This commit is contained in:
Pierre Bourdon 2024-07-10 18:17:30 +02:00
parent 411d514ab9
commit 58325e30dd
Signed by untrusted user: delroth
GPG key ID: 6FB80DCD84DA0F1C

View file

@ -11,4 +11,11 @@
setNixPath = true;
setFlakeRegistry = true;
};
# Use our cache and trust its signing key. Still use cache.nixos.org as
# fallback.
nix.settings.substituters = [ "https://bagel-cache.s3-web.delroth.net/" ];
nix.settings.trusted-public-keys = [
"cache.forkos.org:xfXIUJO1yiEITJmYsVmNDa9BFSlgTh/YqZ+4ei1EhQg="
];
}