Add default Nix overlay

This commit is contained in:
Sebastian Estrella
2024-12-28 22:23:30 -05:00
committed by Mitchell Hashimoto
parent b8a75c24a6
commit 16f81353cc

View File

@ -58,7 +58,12 @@
formatter.${system} = pkgs-stable.alejandra;
# Our supported systems are the same supported systems as the Zig binaries.
}) (builtins.attrNames zig.packages));
}) (builtins.attrNames zig.packages))
// {
overlays.default = final: prev: {
ghostty = self.packages.${prev.system}.default;
};
};
nixConfig = {
extra-substituters = ["https://ghostty.cachix.org"];