nix-config/modules/binary-caches.nix

28 lines
614 B
Nix
Raw Normal View History

2025-01-11 03:55:19 +01:00
{ ... }:
{
2022-05-25 19:27:42 +02:00
nix = {
2022-06-11 23:28:31 +02:00
extraOptions = ''
builders-use-substitutes = true
'';
2022-05-25 19:27:42 +02:00
settings = {
trusted-users = [
2025-01-02 16:29:05 +01:00
"0xa"
2022-05-25 19:27:42 +02:00
"@wheel"
];
substituters = [
"https://microvm.cachix.org"
"https://nix-community.cachix.org"
2022-05-25 19:27:42 +02:00
];
trusted-substituters = [
"https://microvm.cachix.org"
"https://nix-community.cachix.org"
2022-05-25 19:27:42 +02:00
];
trusted-public-keys = [
"microvm.cachix.org-1:oXnBc6hRE3eX5rSYdRyMYXnfzcCxC7yKPTbZXALsqys="
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
2022-05-25 19:27:42 +02:00
];
};
};
}