Fix strict host key check error

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2025-01-10 13:21:55 +00:00
parent 6c618d9baa
commit 3f3254f519
3 changed files with 31 additions and 5 deletions

View File

@@ -21,7 +21,10 @@
hostname = "github.com";
user = "git";
identityFile = "${home}/.ssh/ssh_personal_ed25519_key";
extraOptions.StrictHostKeyChecking = "no";
extraOptions = {
StrictHostKeyChecking = "no";
UserKnownHostsFile = "/dev/null";
};
};
};
};