Skip to content

Commit

Permalink
fix(kitty): changed ssh alias
Browse files Browse the repository at this point in the history
Kitty emulator has a few problem with ssh connection and application
within the connection has unpredictable bugs. This is workaround from
official FAQ
  • Loading branch information
Wittano committed Oct 14, 2024
1 parent 551a9c7 commit 7c53027
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions modules/desktop/submodules/kitty.nix
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{ pkgs, ... }:
{
config = {
config = rec {
home-manager.users.wittano = {
programs.kitty = {
enable = true;
package = pkgs.kitty;
font = {
size = 18;
name = "JetBrains Mono";
Expand All @@ -12,7 +13,7 @@
shellIntegration.enableFishIntegration = true;
};

programs.fish.shellAliases.ssh = "kitty +kitten ssh";
programs.fish.shellAliases.ssh = "${home-manager.users.wittano.programs.kitty.package}/bin/kitten ssh";
};
};
}

0 comments on commit 7c53027

Please sign in to comment.