nix-config/common/binary-cache.nix
Zuckerberg 5d4da7c073
Some checks failed
Check Flake / check-flake (push) Failing after 3h12m27s
Basic binary cache
2023-04-29 19:52:31 -06:00

18 lines
414 B
Nix

{ config, lib, ... }:
{
nix = {
settings = {
substituters = [
"http://s0.koi-bebop.ts.net:5000"
"https://nix-community.cachix.org"
"https://cache.nixos.org/"
];
trusted-public-keys = [
"s0.koi-bebop.ts.net:OjbzD86YjyJZpCp9RWaQKANaflcpKhtzBMNP8I2aPUU="
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
};
};
}