From 99e261183849cd0c732472fdea15e8400386d56b Mon Sep 17 00:00:00 2001
From: Myned <dev@bjork.tech>
Date: Fri, 28 Feb 2025 09:44:41 -0600
Subject: [PATCH] ssh: automatically accept new host keys

Signed-off-by: Myned <dev@bjork.tech>
---
 options/custom/programs/ssh.nix | 1 +
 1 file changed, 1 insertion(+)

diff --git a/options/custom/programs/ssh.nix b/options/custom/programs/ssh.nix
index 5a4e687..2f2ee0a 100644
--- a/options/custom/programs/ssh.nix
+++ b/options/custom/programs/ssh.nix
@@ -17,6 +17,7 @@ in {
         extraConfig = ''
           Host *
             SetEnv TERM=xterm-256color
+            StrictHostKeyChecking accept-new
         '';
       };