6 lines
162 B
Nix
6 lines
162 B
Nix
{inputs, ...}: final: prev: let
|
|
inherit (final) stdenv;
|
|
inherit (stdenv.hostPlatform) system;
|
|
in {
|
|
ghostty = inputs.ghostty.packages."${system}".default;
|
|
}
|