Skip to content

Commit

Permalink
add ssh section back
Browse files Browse the repository at this point in the history
  • Loading branch information
Sathvik Birudavolu committed Jul 29, 2024
1 parent 8cce7d1 commit 87e0f1a
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions home/packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -92,19 +92,19 @@ in
};

# TODO: Re-enable this
# programs.ssh = {
# enable = true;
# controlPath = "~/.ssh/%C"; # ensures the path is unique but also fixed length
# matchBlocks = {
# "github.com" = {
# identityFile = "~/.ssh/github";
# extraOptions = {
# UseKeychain = "yes";
# AddKeysToAgent = "yes";
# };
# };
# };
# };
programs.ssh = {
enable = true;
controlPath = "~/.ssh/%C"; # ensures the path is unique but also fixed length
matchBlocks = {
"github.com" = {
identityFile = "~/.ssh/github";
extraOptions = {
UseKeychain = "yes";
AddKeysToAgent = "yes";
};
};
};
};

# Zoxide, a faster way to navigate the filesystem
# https://github.com/ajeetdsouza/zoxide
Expand Down

0 comments on commit 87e0f1a

Please sign in to comment.