From c86c558571aa2e4fbb83650ad20f77404be5b811 Mon Sep 17 00:00:00 2001 From: RGBCube <78925721+RGBCube@users.noreply.github.com> Date: Wed, 6 Dec 2023 23:50:44 +0300 Subject: [PATCH] Add packages.default property This is useful for doing `nix run $flakeref` and other nix tools --- flake.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/flake.nix b/flake.nix index 28f8fd273..b1411652b 100644 --- a/flake.nix +++ b/flake.nix @@ -63,6 +63,7 @@ # https://github.com/mitchellh/ghostty/tree/main#developing-ghostty # packages.ghostty = pkgs.ghostty; + packages.default = packages.ghostty; defaultPackage = packages.ghostty; } );