aboutsummaryrefslogtreecommitdiff
path: root/modules/common/ssh.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2025-10-09 19:11:52 -0700
committerFranck Cuny <franck@fcuny.net>2025-10-09 19:11:52 -0700
commitf9205e1e963aa2ff9e31f93e80c536aa59f0842e (patch)
tree3339280e10b9bebfeac2a092a839f4855b34f9dd /modules/common/ssh.nix
parentfix DNS configuration (diff)
downloadinfra-f9205e1e963aa2ff9e31f93e80c536aa59f0842e.tar.gz
move common modules under modules/
Simplify the import on the various hosts.
Diffstat (limited to 'modules/common/ssh.nix')
-rw-r--r--modules/common/ssh.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/common/ssh.nix b/modules/common/ssh.nix
new file mode 100644
index 0000000..3e975ee
--- /dev/null
+++ b/modules/common/ssh.nix
@@ -0,0 +1,7 @@
+{ ... }:
+{
+ programs.ssh.knownHosts = {
+ "github.com".publicKey =
+ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOMqqnkVzrm0SdG6UOoqKLsabgH5C9okWi0dh2l9GKJl";
+ };
+}