Merge pull request #1211 from EdenEast/nix-cachix-config

feat(nix): add cachix binary cache to flake
This commit is contained in:
Mitchell Hashimoto
2024-01-04 13:40:44 -08:00
committed by GitHub

View File

@ -62,4 +62,9 @@
# Our supported systems are the same supported systems as the Zig binaries. # Our supported systems are the same supported systems as the Zig binaries.
}) (builtins.attrNames zig.packages)); }) (builtins.attrNames zig.packages));
nixConfig = {
extra-substituters = ["https://ghostty.cachix.org"];
extra-trusted-public-keys = ["ghostty.cachix.org-1:QB389yTa6gTyneehvqG58y0WnHjQOqgnA+wBnpWWxns="];
};
} }