fix known_hosts host in local-machine.nix

This commit is contained in:
Sam 2025-02-27 10:42:17 +00:00
parent 0878074451
commit 43a40d0e3c

View file

@ -21,8 +21,8 @@ in
# ];
programs.ssh.knownHosts = {
"merlin" = {
publicKey = "${remoteMachineIp} ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFSGyrQvwa7gj0tG/EX3siWzGT9badUkD0yw0YGkcNeQ";
"${remoteMachineIp}" = {
publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFSGyrQvwa7gj0tG/EX3siWzGT9badUkD0yw0YGkcNeQ";
};
};