summaryrefslogtreecommitdiffstats
path: root/krebs/3modules/github/known-hosts.nix
diff options
context:
space:
mode:
authorlassulus <lassulus@lassul.us>2022-10-19 00:30:26 +0200
committerlassulus <lassulus@lassul.us>2022-10-19 00:30:26 +0200
commitc68da76ea1ffab8e012527383047bb3dc718b20f (patch)
treec4a8895d98446822fbd3a6f58215490092005b96 /krebs/3modules/github/known-hosts.nix
parentfbec9a17fe6a012ce6f794e5a2d73c6dcec19463 (diff)
parentb5f7882fcada26d968b643765f32fd1ac23613ff (diff)
Merge remote-tracking branch 'ni/master'
Diffstat (limited to 'krebs/3modules/github/known-hosts.nix')
-rw-r--r--krebs/3modules/github/known-hosts.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/krebs/3modules/github/known-hosts.nix b/krebs/3modules/github/known-hosts.nix
new file mode 100644
index 00000000..f2705caa
--- /dev/null
+++ b/krebs/3modules/github/known-hosts.nix
@@ -0,0 +1,12 @@
+{ lib, ... }: {
+ services.openssh.knownHosts.github = {
+ hostNames =
+ ["github.com"]
+ ++
+ # List generated with (IPv6 addresses are currently ignored):
+ # curl -sS https://api.github.com/meta | jq -r .git[] | grep -v : | nix-shell -p cidr2glob --run cidr2glob | jq -Rs 'split("\n")|map(select(.!=""))' > known-hosts.json
+ lib.importJSON ./known-hosts.json
+ ;
+ publicKey = "ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ==";
+ };
+}