Files
dotfiles/config/nixos/packages/workstation/ghostty.nix
Menno van Leeuwen b5e2bb933f
All checks were successful
Nix Format Check / check-format (push) Successful in 40s
add ghostty configuration and update flake.lock for new dependencies
2024-12-30 15:00:15 +01:00

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
];
}