nix-config/hosts/nixos/porthos/home.nix
Bruno BELANYI ca4fac3c54
All checks were successful
ci/woodpecker/push/check Pipeline was successful
hosts: nixos: porthos: fix tmux 24-bit color
Well at least this fixes it for the usual client (my laptop).
2023-10-30 13:33:27 +00:00

14 lines
286 B
Nix

{ ... }:
{
my.home = {
# Allow using 24bit color when SSH-ing from various clients
tmux.trueColorTerminals = [
# My usual terminal, e.g: on laptop
"alacritty"
];
# Always start a tmux session when opening a shell session
zsh.launchTmux = true;
};
}