From 43a40d0e3ca422baf22551a0a7e010655838b936 Mon Sep 17 00:00:00 2001 From: Sam Date: Thu, 27 Feb 2025 10:42:17 +0000 Subject: [PATCH] fix known_hosts host in local-machine.nix --- hosts/common/optional/distributed-builds/local-machine.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/common/optional/distributed-builds/local-machine.nix b/hosts/common/optional/distributed-builds/local-machine.nix index 511926e..a2471fd 100644 --- a/hosts/common/optional/distributed-builds/local-machine.nix +++ b/hosts/common/optional/distributed-builds/local-machine.nix @@ -21,8 +21,8 @@ in # ]; programs.ssh.knownHosts = { - "merlin" = { - publicKey = "${remoteMachineIp} ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFSGyrQvwa7gj0tG/EX3siWzGT9badUkD0yw0YGkcNeQ"; + "${remoteMachineIp}" = { + publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFSGyrQvwa7gj0tG/EX3siWzGT9badUkD0yw0YGkcNeQ"; }; };