2022-05-25 19:27:42 +02:00
|
|
|
{ pkgs, lib, ... }: {
|
|
|
|
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 = [
|
|
|
|
"grue"
|
|
|
|
"@wheel"
|
|
|
|
];
|
|
|
|
substituters = [
|
|
|
|
"https://microvm.cachix.org"
|
2022-07-16 18:48:40 +02:00
|
|
|
"https://hydra.hq.c3d2.de"
|
2022-05-25 19:27:42 +02:00
|
|
|
"https://dump-dvb.cachix.org"
|
2022-07-10 03:00:29 +02:00
|
|
|
"https://nix-community.cachix.org"
|
2022-05-25 19:27:42 +02:00
|
|
|
];
|
|
|
|
trusted-substituters = [
|
|
|
|
"https://microvm.cachix.org"
|
2022-07-10 03:00:29 +02:00
|
|
|
"https://hydra.hq.c3d2.de"
|
2022-05-25 19:27:42 +02:00
|
|
|
"https://dump-dvb.cachix.org"
|
2022-07-10 03:00:29 +02:00
|
|
|
"https://nix-community.cachix.org"
|
2022-05-25 19:27:42 +02:00
|
|
|
];
|
|
|
|
trusted-public-keys = [
|
|
|
|
"microvm.cachix.org-1:oXnBc6hRE3eX5rSYdRyMYXnfzcCxC7yKPTbZXALsqys="
|
|
|
|
"nix-serve.hq.c3d2.de:KZRGGnwOYzys6pxgM8jlur36RmkJQ/y8y62e52fj1ps="
|
|
|
|
"dump-dvb.cachix.org-1:+Dq7gqpQG4YlLA2X3xJsG1v3BrlUGGpVtUKWk0dTyUU="
|
2022-07-10 03:00:29 +02:00
|
|
|
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
2022-05-25 19:27:42 +02:00
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|