add ghostty overlay to replace ghostty.

This commit is contained in:
Ulic-youthlic 2025-01-08 15:26:27 +08:00
parent 750688b2b5
commit b2330c7a1d
3 changed files with 11 additions and 1 deletions

View file

@ -0,0 +1,9 @@
{ inputs, ... }:
final: prev:
let
inherit (final) stdenv;
inherit (stdenv.hostPlatform) system;
in
{
ghostty = inputs.ghostty.packages."${system}".default;
}