my nixos/home-manager configuration
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

set term env when ssh

bc ghostty sets it to term-ghostty which is not compatible with ssh it seems

youn 9df828d1 542ce888

+6 -1
+6 -1
home-manager/modules/ssh.nix
··· 18 18 enable = true; 19 19 addKeysToAgent = "yes"; 20 20 matchBlocks = { 21 - "*".identityFile = [ ssh.private.path ]; 21 + "*" = { 22 + identityFile = [ ssh.private.path ]; 23 + setEnv = { 24 + TERM = "xterm-256color"; 25 + }; 26 + }; 22 27 "*.clever-cloud.com".identityFile = [ 23 28 (toString config.age.secrets.clever-cloud-ssh.path) 24 29 ];