2024-01-15 11:14:35 +01:00
|
|
|
# Google Laptop configuration
|
2024-02-23 14:28:48 +01:00
|
|
|
{ lib, options, pkgs, ... }:
|
2023-12-07 15:26:36 +01:00
|
|
|
{
|
|
|
|
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;
|
|
|
|
|
2024-03-07 16:42:58 +01:00
|
|
|
terminalFeatures = {
|
|
|
|
# HTerm uses `xterm-256color` as its `$TERM`, so use that here
|
|
|
|
xterm-256color = { };
|
|
|
|
};
|
2023-12-07 15:26:36 +01:00
|
|
|
};
|
2023-12-07 15:34:17 +01:00
|
|
|
|
|
|
|
ssh = {
|
|
|
|
mosh = {
|
|
|
|
package = pkgs.emptyDirectory;
|
|
|
|
};
|
|
|
|
};
|
2024-02-12 22:22:19 +01:00
|
|
|
|
|
|
|
zsh = {
|
|
|
|
notify = {
|
|
|
|
enable = true;
|
|
|
|
|
2024-02-23 14:28:48 +01:00
|
|
|
exclude = options.my.home.zsh.notify.exclude.default ++ [
|
|
|
|
"adb shell$" # Only interactive shell sessions
|
|
|
|
];
|
|
|
|
|
2024-02-12 22:22:19 +01:00
|
|
|
ssh = {
|
|
|
|
enable = true;
|
|
|
|
# `notify-send` is proxied to the ChromeOS layer
|
|
|
|
useOsc777 = false;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2023-12-07 15:26:36 +01:00
|
|
|
};
|
|
|
|
}
|