nix-config/hosts/homes/ambroisie@mousqueton/default.nix
Bruno BELANYI ea5d240d83 hosts: homes: mousqueton: fix terminal name
Turns out I *can* use a more accurate terminfo entry for HTerm.

This fixes undercurl rendering in that terminal.
2025-04-16 21:28:17 +01:00

27 lines
656 B
Nix

# Google Cloudtop configuration
{ lib, pkgs, ... }:
{
# Google specific configuration
home.homeDirectory = "/usr/local/google/home/ambroisie";
services.gpg-agent.enable = lib.mkForce false;
my.home = {
git = {
package = pkgs.emptyDirectory;
};
tmux = {
# I use scripts that use the passthrough sequence often on this host
enablePassthrough = true;
# Frequent reboots mean that session persistence can be handy
enableResurrect = true;
terminalFeatures = {
# HTerm configured to use a more accurate terminfo entry than `xterm-256color`
hterm-256color = { };
};
};
};
}