Add default Nix overlay

pull/3847/head
Sebastian Estrella 2024-12-28 22:23:30 -05:00 committed by Mitchell Hashimoto
parent b8a75c24a6
commit 16f81353cc
1 changed files with 6 additions and 1 deletions

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