Skip to content

Commit

Permalink
fix: wrong assigned key
Browse files Browse the repository at this point in the history
  • Loading branch information
standard3 committed Mar 25, 2024
1 parent 06d0c93 commit 57a9f72
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions home/applications/tools/ssh.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
programs.ssh = {
enable = true;
startAgent = true;
# addKeysToAgent = "yes";

matchBlocks = {
"github.com" = {
Expand All @@ -12,12 +12,12 @@
"pwn.college" = {
hostname = "pwn.college";
user = "hacker";
identityFile = "~/.ssh/id_rsa";
identityFile = "~/.ssh/pwn.college";
};

"git.ecole2600.com" = {
hostname = "git.ecole2600.com";
identityFile = "~/.ssh/pwn.college";
identityFile = "~/.ssh/2600";
};
};
};
Expand Down

0 comments on commit 57a9f72

Please sign in to comment.