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