Update nuc-server IP

This commit is contained in:
albert 2025-01-16 14:04:34 -08:00
parent bdc2404211
commit b88ccfd8b6
Signed by: albert
GPG key ID: 3895DD267CA11BA9

View file

@ -1,12 +1,12 @@
{ config, pkgs, ... }: {
# Disable strict host key checking for
# 192.168.1.210 - framework-server
# 192.168.1.101 - nuc-server
# 192.168.1.35 - 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
Host 192.168.1.35 #
StrictHostKeyChecking no
'';
}