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.
20 lines
518 B
Nix
20 lines
518 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
# ── System-essential packages ──────────────────────
|
|
# User-level tools live in home-manager (home/)
|
|
environment.systemPackages = with pkgs; [
|
|
curl
|
|
git
|
|
ghostty.terminfo
|
|
vim
|
|
wget
|
|
];
|
|
|
|
# ── Fonts ──────────────────────────────────────────
|
|
fonts.packages = with pkgs; [
|
|
maple-mono.NF-CN-unhinted
|
|
nerd-fonts.symbols-only
|
|
];
|
|
}
|