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

13 lines
343 B
Nix
Raw Normal View History

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