Commit 1c74d5b367d5

Vincent Demeester <vincent@sbr.pm>
2025-11-20 10:42:30
chore: alias ssh to use kitty +kitten ssh
To fix the TERM in remote sessions. Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 48b2361
Changed files (1)
home
common
desktop
home/common/desktop/kitty.nix
@@ -32,4 +32,8 @@ _: {
     # action_alias mkh kitten hints --alphabet asdfghjklqwertyuiopzxcvbnmASDFGHJKLQWERTYUIOPZXCVBNM
     # map kitty_mod+n    mkh --type=linenum emacsclient -c -nw +{line} {path}
   };
+
+  programs.zsh.shellAliases = {
+    ssh = ''kitty +kitten ssh'';
+  };
 }