From 0e804753164db28fdcd72f21bda9b5e80d61e1a7 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Mon, 29 Jan 2024 21:40:32 +0300 Subject: [PATCH] Set COLORTERM as well in SSH --- modules/ssh.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/ssh.nix b/modules/ssh.nix index e5e3e26..568fdbe 100644 --- a/modules/ssh.nix +++ b/modules/ssh.nix @@ -6,7 +6,10 @@ (desktopHomeConfiguration { programs.ssh = enabled { - matchBlocks."*".setEnv.TERM = "xterm-256color"; + matchBlocks."*".setEnv = { + COLORTERM = "truecolor"; + TERM = "xterm-256color"; + }; matchBlocks.cube = { hostname = "5.255.78.70";