From 2613e4af27afd0cf36635e945fb1f9048cb53bf0 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Sat, 16 Dec 2023 11:13:53 +0300 Subject: [PATCH] Apply setEnv for all hosts --- modules/ssh/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/ssh/default.nix b/modules/ssh/default.nix index 272196c..74b2ca4 100644 --- a/modules/ssh/default.nix +++ b/modules/ssh/default.nix @@ -2,11 +2,12 @@ homeConfiguration { programs.ssh = enabled { + matchBlocks."*".setEnv.TERM = "xterm-kitty"; + matchBlocks.robotic = { hostname = "86.105.252.189"; user = "rgbcube"; port = 2299; - setEnv.TERM = "xterm-kitty"; identityFile = "~/.ssh/id_rsa"; }; };