diff options
| author | Franck Cuny <franck@fcuny.net> | 2026-01-26 09:30:31 -0800 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2026-01-26 09:30:31 -0800 |
| commit | 2b1866f4d4f83c724bae04e79a9b228bcece47ba (patch) | |
| tree | a4c4d5179a1ab2005ea5c7af6ef6119a332dca66 /modules | |
| parent | persist postgresql's data dir (diff) | |
| download | infra-2b1866f4d4f83c724bae04e79a9b228bcece47ba.tar.gz | |
add framebox to the ssh know host list
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/ssh.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/ssh.nix b/modules/ssh.nix index 3e975ee..7097aaa 100644 --- a/modules/ssh.nix +++ b/modules/ssh.nix @@ -1,7 +1,9 @@ -{ ... }: +{ hostConfigurations, ... }: { programs.ssh.knownHosts = { "github.com".publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOMqqnkVzrm0SdG6UOoqKLsabgH5C9okWi0dh2l9GKJl"; + "builder".publicKey = hostConfigurations.framebox.publicKey; + "framebox".publicKey = hostConfigurations.framebox.publicKey; }; } |
