# 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; }; }; zsh = { notify = { enable = true; ssh = { enable = true; useOsc777 = false; # notify-send is proxied to the ChromeOS layer }; }; }; }; }