Bruno BELANYI
f9cdff8c13
All checks were successful
ci/woodpecker/push/check Pipeline was successful
42 lines
863 B
Nix
42 lines
863 B
Nix
# Google Laptop configuration
|
|
{ lib, options, 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;
|
|
|
|
exclude = options.my.home.zsh.notify.exclude.default ++ [
|
|
"adb shell$" # Only interactive shell sessions
|
|
];
|
|
|
|
ssh = {
|
|
enable = true;
|
|
# `notify-send` is proxied to the ChromeOS layer
|
|
useOsc777 = false;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|