From 9af2aeaae9be13db83b45abd35a704146a05fa85 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Thu, 27 Jan 2022 00:17:43 -0500 Subject: [PATCH] fix(kitty): add softsh alias for soft servers Works around a limitation with the Soft git server which prevents the kitty ssh alias from functioning. --- users/profiles/kitty.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/users/profiles/kitty.nix b/users/profiles/kitty.nix index 282e101..07c4e67 100644 --- a/users/profiles/kitty.nix +++ b/users/profiles/kitty.nix @@ -10,5 +10,6 @@ home.shellAliases = { ssh = "kitty +kitten ssh"; + softsh = "TERM=xterm-256color \ssh"; # https://github.com/charmbracelet/soft-serve/issues/72 }; }