From 01d3e38d4ad5dea2b128ffe9aae3d42426c14619 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20B=C3=B6hme?= Date: Thu, 10 Nov 2022 22:12:36 +0100 Subject: [PATCH] :bug: fix ssh --- modules/programs/kitty.nix | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/modules/programs/kitty.nix b/modules/programs/kitty.nix index 8ab1958..76c4a10 100644 --- a/modules/programs/kitty.nix +++ b/modules/programs/kitty.nix @@ -12,7 +12,7 @@ in options.my.programs.kitty.enable = mkEnableOption "kitty"; config = mkIf cfg.enable { - my.shell.aliases.ssh = "kitty +kitten ssh"; + my.shell.aliases.ssh = "TERM=xterm-256color command ssh"; home-manager.users.moritz = { programs.kitty = { enable = true; @@ -32,11 +32,6 @@ in size = 10; }; }; - xdg.configFile."kitty/ssh.conf" = { - text = '' - env TERM=xterm-color - ''; - }; }; }; }