aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFranck Cuny <59291+fcuny@users.noreply.github.com>2025-02-07 08:40:41 -0800
committerFranck Cuny <59291+fcuny@users.noreply.github.com>2025-02-07 08:40:41 -0800
commite23ab92934a6f268b951d5b5ee965e2794da6438 (patch)
tree26f81d4671eecbdc1d3f0b49263db17886b0fcff
parentremove configuration for old work laptop (diff)
downloadinfra-e23ab92934a6f268b951d5b5ee965e2794da6438.tar.gz
add ssh key for github.rbx.com
Diffstat (limited to '')
-rw-r--r--nix/machines/darwin-shared.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/nix/machines/darwin-shared.nix b/nix/machines/darwin-shared.nix
index 275596f..b9ca3dd 100644
--- a/nix/machines/darwin-shared.nix
+++ b/nix/machines/darwin-shared.nix
@@ -90,7 +90,10 @@
];
};
- # https://docs.github.com/en/enterprise-cloud@latest/authentication/keeping-your-account-and-data-secure/githubs-ssh-key-fingerprints
- programs.ssh.knownHosts."github.com".publicKey =
- "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOMqqnkVzrm0SdG6UOoqKLsabgH5C9okWi0dh2l9GKJl";
+ programs.ssh.knownHosts = {
+ "github.com".publicKey =
+ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOMqqnkVzrm0SdG6UOoqKLsabgH5C9okWi0dh2l9GKJl";
+ "github.rbx.com".publicKey =
+ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGOkTbrUneNFqdYcclbh2fjB/c+XKh95241oOfWUwCDM";
+ };
}