bf01c40ebb
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.
14 lines
296 B
Nix
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";
|
|
};
|
|
};
|
|
}
|