Add default Nix overlay

This commit is contained in:
Sebastian Estrella
2024-12-28 22:23:30 -05:00
committed by Jonathan Lopez
parent 2faf08976d
commit b93bc6be5b

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"];