Commit 2dbf9661211f
Changed files (1)
home
common
desktop
home/common/desktop/kitty.nix
@@ -99,14 +99,9 @@
# SSH kitten configuration - delegate to standard SSH for shpool sessions
# Hosts with / pattern (e.g., host.domain/session) use RemoteCommand which conflicts with the kitten
"kitty/ssh.conf".text = ''
- # Delegate to standard SSH for shpool session patterns (host/session/subsession)
- # This allows RemoteCommand to work without Kitty's SSH kitten interference
- # Match patterns like: host/session, host/session/name, host/session=dir
- hostname */*
- hostname */*/*
- hostname */*=*
- hostname */*/*=*
- delegate ssh
+ # NOTE: Kitty SSH delegation with slash patterns doesn't work reliably
+ # The zsh function in programs.zsh.initExtra below handles this instead
+ # by detecting "/" in the hostname and using raw ssh for those cases
'';
};