Skip to content

Commit

Permalink
feat(ssh): improve ssh using ghostty
Browse files Browse the repository at this point in the history
  • Loading branch information
caarlos0 committed Nov 27, 2023
1 parent 4447477 commit 5b721a6
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions modules/ssh/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
matchBlocks = {
"*" = {
identityFile = "~/.ssh/id_ed25519";
setEnv = {
TERM = "xterm-256color";
};

extraOptions = {
IgnoreUnknown = "UseKeychain";
UseKeyChain = "yes";
Expand All @@ -19,6 +23,9 @@
};
"dev" = {
forwardAgent = true;
setEnv = {
TERM = "xterm-ghostty";
};
remoteForwards = [
{
# pbcopy
Expand Down

0 comments on commit 5b721a6

Please sign in to comment.