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