From 9c64a8ec00f3a053a5af54db90312ba05ba87f3c Mon Sep 17 00:00:00 2001 From: Petru Paler Date: Tue, 28 Oct 2025 19:06:47 +0000 Subject: [PATCH] Fix ghostty termcap. --- home/programs/desktop.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/home/programs/desktop.nix b/home/programs/desktop.nix index 3f9b380..765ce84 100644 --- a/home/programs/desktop.nix +++ b/home/programs/desktop.nix @@ -15,4 +15,10 @@ "$browser" = "google-chrome-stable --new-window --ozone-platform=wayland"; }; }; + + # Extend ghostty configuration from omarchy-nix + programs.ghostty.settings = { + # Automatically handle TERM compatibility for SSH + shell-integration-features = "ssh-env,ssh-terminfo"; + }; }