ghostty: use nixgl wrapper

This commit is contained in:
John Bowdre 2024-12-26 16:34:18 -06:00
parent 127b1c9268
commit 0307c91860
Signed by: john
SSH key fingerprint: SHA256:cZYnOxaLdo+MhBNMX38ihO/p2Kek6fBykSFoJwHBhUo

View file

@ -1,6 +1,7 @@
{ inputs, ... }: {
{ config, inputs, ... }: {
home.packages = [ inputs.ghostty.packages.x86_64-linux.default ];
home.packages =
[ (config.lib.nixGL.wrap inputs.ghostty.packages.x86_64-linux.default) ];
}