nix-config/hosts/homes/ambroisie@bazin/default.nix

42 lines
863 B
Nix
Raw Normal View History

2024-01-15 11:14:35 +01:00
# Google Laptop configuration
{ lib, options, pkgs, ... }:
2023-12-07 15:26:36 +01:00
{
services.gpg-agent.enable = lib.mkForce false;
my.home = {
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;
# HTerm uses `xterm-256color` as its `$TERM`, so use that here
trueColorTerminals = [ "xterm-256color" ];
};
ssh = {
mosh = {
package = pkgs.emptyDirectory;
};
};
2024-02-12 22:22:19 +01:00
zsh = {
notify = {
enable = true;
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
};
}