From 57a9f7244465bf4f31d5cce2f538d79b73901f7c Mon Sep 17 00:00:00 2001 From: std3 <67806187+standard3@users.noreply.github.com> Date: Mon, 25 Mar 2024 10:02:19 +0100 Subject: [PATCH] fix: wrong assigned key --- home/applications/tools/ssh.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/home/applications/tools/ssh.nix b/home/applications/tools/ssh.nix index e213d28..62db2e9 100644 --- a/home/applications/tools/ssh.nix +++ b/home/applications/tools/ssh.nix @@ -1,7 +1,7 @@ { programs.ssh = { enable = true; - startAgent = true; + # addKeysToAgent = "yes"; matchBlocks = { "github.com" = { @@ -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"; }; }; };