hosts: nixos: porthos: fix tmux 24-bit color
ci/woodpecker/push/check Pipeline was successful Details

Well at least this fixes it for the usual client (my laptop).
This commit is contained in:
Bruno BELANYI 2023-10-30 13:33:27 +00:00
parent 6a8f93df1f
commit ca4fac3c54
1 changed files with 6 additions and 0 deletions

View File

@ -1,6 +1,12 @@
{ ... }:
{
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;
};