nix/home-manager/common/software/cli/ssh.nix
2024-11-21 00:33:00 +01:00

12 lines
343 B
Nix

{ config, pkgs, ... }: {
# Disable strict host key checking for
# 192.168.1.210 - framework-server
# 192.168.1.101 - nuc-server
# The key will change between boot and live for LUKS unlocking
home.file.".ssh/config".text = ''
Host 192.168.1.210
StrictHostKeyChecking no
Host 192.168.1.101
StrictHostKeyChecking no
'';
}