From 16f81353ccacce3dc15bbb8e864f2270360a4a83 Mon Sep 17 00:00:00 2001 From: Sebastian Estrella <2049686+sestrella@users.noreply.github.com> Date: Sat, 28 Dec 2024 22:23:30 -0500 Subject: [PATCH] Add default Nix overlay --- flake.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index e17fffed3..83d4af414 100644 --- a/flake.nix +++ b/flake.nix @@ -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"];