nix-config/hosts/homes/ambroisie@mousqueton/default.nix
Bruno BELANYI 8987085494
All checks were successful
ci/woodpecker/push/check Pipeline was successful
WIP: xterm.js
2025-04-17 09:58:45 +00:00

29 lines
732 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 = { };
# Terminal app uses `xterm.js`, not HTerm
"xterm.js" = { };
};
};
};
}