All checks were successful
ci/woodpecker/push/check Pipeline was successful
29 lines
732 B
Nix
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" = { };
|
|
};
|
|
};
|
|
};
|
|
}
|