2023-03-09 11:21:36 +01:00
|
|
|
# Google Cloudtop configuration
|
2023-10-12 14:56:41 +02:00
|
|
|
{ lib, pkgs, ... }:
|
2023-03-09 11:21:36 +01:00
|
|
|
{
|
|
|
|
# Google specific configuration
|
|
|
|
home.homeDirectory = "/usr/local/google/home/ambroisie";
|
|
|
|
|
2023-10-19 12:42:19 +02:00
|
|
|
services.gpg-agent.enable = lib.mkForce false;
|
|
|
|
|
2023-10-31 15:56:18 +01:00
|
|
|
my.home = {
|
2023-12-07 15:40:15 +01:00
|
|
|
git = {
|
|
|
|
package = pkgs.emptyDirectory;
|
|
|
|
};
|
|
|
|
|
2023-10-31 15:56:18 +01:00
|
|
|
tmux = {
|
|
|
|
# I use scripts that use the passthrough sequence often on this host
|
|
|
|
enablePassthrough = true;
|
2023-10-26 14:27:31 +02:00
|
|
|
|
2023-10-31 15:56:18 +01:00
|
|
|
# HTerm uses `xterm-256color` as its `$TERM`, so use that here
|
|
|
|
trueColorTerminals = [ "xterm-256color" ];
|
|
|
|
};
|
|
|
|
};
|
2023-03-09 11:21:36 +01:00
|
|
|
}
|