feat(ghostty): enable SSH terminfo propagation and install terminfo on NixOS

Enable ssh-env and ssh-terminfo in Ghostty shell integration for automatic
terminfo handling on remote hosts, and add ghostty.terminfo to NixOS system
packages for coverage when Ghostty SSH wrapper is bypassed.
This commit is contained in:
2026-04-13 21:25:35 +08:00
parent 53f8c2ceb3
commit bf01c40ebb
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -7,6 +7,7 @@
settings = { settings = {
font-family = "Maple Mono NF CN"; font-family = "Maple Mono NF CN";
font-size = 14; font-size = 14;
shell-integration-features = "cursor,sudo,title,ssh-env,ssh-terminfo";
}; };
}; };
} }
+1
View File
@@ -6,6 +6,7 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
curl curl
git git
ghostty.terminfo
vim vim
wget wget
]; ];