home

My NixOS systems configurations.
Log | Files | Refs | LICENSE

commit f2265f9f0836d162027fed0ddb69b61526a58bdc
parent 3ef7334a59ff0ea0dc63079615dff78969e6d2fa
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Fri, 11 Feb 2022 17:50:52 +0100

users/vincent: disable host key checking locally

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Musers/vincent/core/ssh.nix | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/users/vincent/core/ssh.nix b/users/vincent/core/ssh.nix @@ -81,6 +81,10 @@ in }; "192.168.1.*" = { forwardAgent = true; + extraOptions = { + StrictHostKeyChecking = "no"; + UserKnownHostsFile = "/dev/null"; + }; }; "10.100.0.*" = { forwardAgent = true;