From 1cc9ace52099cbe833395cfa431b540fcbb9a5fb Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Sun, 7 Dec 2025 10:27:05 -0600 Subject: [PATCH] added nixGL options to ghostty config --- homeManagerModules/ghostty.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/homeManagerModules/ghostty.nix b/homeManagerModules/ghostty.nix index f97a687..815736d 100644 --- a/homeManagerModules/ghostty.nix +++ b/homeManagerModules/ghostty.nix @@ -16,7 +16,7 @@ enableZshIntegration = true; package = config.lib.nixGL.wrap pkgs.ghostty; settings = { - # command = "TERM=xterm-256color /usr/bin/bash"; + command = "TERM=xterm-256color /usr/bin/bash"; font-size = 12; font-family = "Source Code Pro"; # theme = "idleToes"; @@ -58,7 +58,7 @@ name = "Ghostty"; type = "Application"; comment = "A terminal emulator"; - exec = "ghostty"; + exec = "nixGL ghostty"; icon = "com.mitchellh.ghostty"; terminal = false; startupNotify = true; @@ -75,7 +75,7 @@ actions = { new-window = { name = "New Window"; - exec = "ghostty"; + exec = "nixGL ghostty"; }; }; };