2023-12-07 15:26:36 +01:00
|
|
|
# Google Cloudtop configuration
|
|
|
|
{ lib, pkgs, ... }:
|
|
|
|
{
|
|
|
|
services.gpg-agent.enable = lib.mkForce false;
|
|
|
|
|
|
|
|
my.home = {
|
2023-12-07 15:40:21 +01:00
|
|
|
git = {
|
|
|
|
package = pkgs.emptyDirectory;
|
|
|
|
};
|
|
|
|
|
2023-12-07 15:26:36 +01:00
|
|
|
tmux = {
|
|
|
|
# I use scripts that use the passthrough sequence often on this host
|
|
|
|
enablePassthrough = true;
|
|
|
|
|
|
|
|
# HTerm uses `xterm-256color` as its `$TERM`, so use that here
|
|
|
|
trueColorTerminals = [ "xterm-256color" ];
|
|
|
|
};
|
2023-12-07 15:34:17 +01:00
|
|
|
|
|
|
|
ssh = {
|
|
|
|
mosh = {
|
|
|
|
package = pkgs.emptyDirectory;
|
|
|
|
};
|
|
|
|
};
|
2023-12-07 15:26:36 +01:00
|
|
|
};
|
|
|
|
}
|