nix-config/hosts/homes/ambroisie@bazin/default.nix
Bruno BELANYI 8b07ff5bbe
All checks were successful
ci/woodpecker/push/check Pipeline was successful
homes: bazin: enable zsh notifications
2024-02-13 11:35:28 +00:00

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