Bruno BELANYI
742b4c39a2
There are other terminal capabilities I want to override in tmux, so let's make this type more extensible.
25 lines
541 B
Nix
25 lines
541 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;
|
|
|
|
terminalFeatures = {
|
|
# HTerm uses `xterm-256color` as its `$TERM`, so use that here
|
|
xterm-256color = { };
|
|
};
|
|
};
|
|
};
|
|
}
|