nix/home-manager/common/software/cli/ssh.nix

9 lines
239 B
Nix
Raw Normal View History

2023-12-01 11:13:39 +09:00
{ config, pkgs, ... }: {
# Disable strict host key checking for 192.168.1.210
# The key will change between boot and live for LUKS unlocking
home.file.".ssh/config".text = ''
Host 192.168.1.210
StrictHostKeyChecking no
'';
2024-05-03 23:42:02 +09:00
}