Files
nix-config/home/shell/ghostty.nix
T
imbytecat bf01c40ebb 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.
2026-04-13 21:25:35 +08:00

14 lines
296 B
Nix

{ pkgs, ... }:
{
programs.ghostty = {
enable = pkgs.stdenv.isDarwin;
package = null; # installed via Homebrew cask
settings = {
font-family = "Maple Mono NF CN";
font-size = 14;
shell-integration-features = "cursor,sudo,title,ssh-env,ssh-terminfo";
};
};
}