26 lines
509 B
Nix
26 lines
509 B
Nix
# Google Laptop configuration
|
|
{ lib, pkgs, ... }:
|
|
{
|
|
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;
|
|
|
|
# HTerm uses `xterm-256color` as its `$TERM`, so use that here
|
|
trueColorTerminals = [ "xterm-256color" ];
|
|
};
|
|
|
|
ssh = {
|
|
mosh = {
|
|
package = pkgs.emptyDirectory;
|
|
};
|
|
};
|
|
};
|
|
}
|