add nix-community as a trusted cache

This commit is contained in:
TheWanderingCrow 2025-10-15 11:58:07 -04:00
parent 9da50149b1
commit e0e888bc36

View file

@ -73,5 +73,13 @@ in {
auto-optimise-store = true;
trusted-users = ["@wheel"];
substituters = [
"https://cache.nixos.org/"
"https://nix-community.cachix.org"
];
trusted-public-keys = [
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
};
}