added nixGL options to ghostty config

This commit is contained in:
John Lancaster
2025-12-07 10:27:05 -06:00
parent d2803b8e5c
commit 1cc9ace520

View File

@@ -16,7 +16,7 @@
enableZshIntegration = true; enableZshIntegration = true;
package = config.lib.nixGL.wrap pkgs.ghostty; package = config.lib.nixGL.wrap pkgs.ghostty;
settings = { settings = {
# command = "TERM=xterm-256color /usr/bin/bash"; command = "TERM=xterm-256color /usr/bin/bash";
font-size = 12; font-size = 12;
font-family = "Source Code Pro"; font-family = "Source Code Pro";
# theme = "idleToes"; # theme = "idleToes";
@@ -58,7 +58,7 @@
name = "Ghostty"; name = "Ghostty";
type = "Application"; type = "Application";
comment = "A terminal emulator"; comment = "A terminal emulator";
exec = "ghostty"; exec = "nixGL ghostty";
icon = "com.mitchellh.ghostty"; icon = "com.mitchellh.ghostty";
terminal = false; terminal = false;
startupNotify = true; startupNotify = true;
@@ -75,7 +75,7 @@
actions = { actions = {
new-window = { new-window = {
name = "New Window"; name = "New Window";
exec = "ghostty"; exec = "nixGL ghostty";
}; };
}; };
}; };