From dc54cd64c21d2ab60bd9e8edf6472373fe249520 Mon Sep 17 00:00:00 2001 From: Jet Date: Thu, 30 Apr 2026 14:09:08 -0700 Subject: [PATCH] feat: use raw ghostty launcher --- configuration.nix | 2 +- home-modules/terminal.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configuration.nix b/configuration.nix index 1e50cad..50cd19b 100644 --- a/configuration.nix +++ b/configuration.nix @@ -147,7 +147,7 @@ xdg.terminal-exec = { enable = true; settings = { - default = [ "ghostty.desktop" ]; + default = [ "com.mitchellh.ghostty.desktop" ]; }; }; diff --git a/home-modules/terminal.nix b/home-modules/terminal.nix index 4139894..a8aa931 100644 --- a/home-modules/terminal.nix +++ b/home-modules/terminal.nix @@ -76,7 +76,7 @@ }; }; - xdg.desktopEntries.ghostty = { + xdg.desktopEntries."com.mitchellh.ghostty" = { name = "Ghostty"; genericName = "Terminal Emulator"; exec = "${pkgs.ghostty}/bin/ghostty --fullscreen=true -e ${homeLib.zellijPersistentSession}/bin/zellij-persistent-session";