17 lines
530 B
Nix
17 lines
530 B
Nix
|
{
|
||
|
nix.settings = {
|
||
|
trusted-substituters = [
|
||
|
"https://cache.nixos.org/"
|
||
|
"https://nix-community.cachix.org"
|
||
|
"https://mat.cachix.org"
|
||
|
"https://helix.cachix.org"
|
||
|
];
|
||
|
trusted-public-keys = [
|
||
|
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
|
||
|
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
||
|
"mat.cachix.org-1:AHqv9SoBEPKlJX2DDZQnjaMcvBAgpH1j8rw5USYDZno="
|
||
|
"helix.cachix.org-1:ejp9KQpR1FBI2onstMQ34yogDm4OgU2ru6lIwPvuCVs="
|
||
|
];
|
||
|
};
|
||
|
}
|