From ca4fac3c546725014b20778c4b4eca6663356cac Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Mon, 30 Oct 2023 13:33:27 +0000 Subject: [PATCH] hosts: nixos: porthos: fix tmux 24-bit color Well at least this fixes it for the usual client (my laptop). --- hosts/nixos/porthos/home.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hosts/nixos/porthos/home.nix b/hosts/nixos/porthos/home.nix index 53d5d25..90aa0ec 100644 --- a/hosts/nixos/porthos/home.nix +++ b/hosts/nixos/porthos/home.nix @@ -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; };