All checks were successful
Nix Format Check / check-format (push) Successful in 40s
11 lines
296 B
Nix
11 lines
296 B
Nix
{ ghostty, pkgs, ... }:
|
|
{
|
|
# Known issue: https://ghostty.org/docs/help/terminfo
|
|
# Issue output such as: tput: unknown terminal "xterm-ghostty"
|
|
# Simply run:
|
|
# $ infocmp -x | ssh SERVER_TO_FIX -- tic -x -
|
|
environment.systemPackages = [
|
|
ghostty.packages.x86_64-linux.default
|
|
];
|
|
}
|