aboutsummaryrefslogtreecommitdiff
path: root/profiles/programs/ssh.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2025-08-12 13:05:22 -0700
committerFranck Cuny <franck@fcuny.net>2025-08-12 13:05:22 -0700
commit4450454e702ac18dfe0300fc03f6e6e2d70acd84 (patch)
tree7f6d479b54bc1093a3b75d5d9a0736c99561217b /profiles/programs/ssh.nix
parentremove unused variable (diff)
downloadinfra-4450454e702ac18dfe0300fc03f6e6e2d70acd84.tar.gz
more simplifications
Diffstat (limited to 'profiles/programs/ssh.nix')
-rw-r--r--profiles/programs/ssh.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/profiles/programs/ssh.nix b/profiles/programs/ssh.nix
new file mode 100644
index 0000000..3e975ee
--- /dev/null
+++ b/profiles/programs/ssh.nix
@@ -0,0 +1,7 @@
+{ ... }:
+{
+ programs.ssh.knownHosts = {
+ "github.com".publicKey =
+ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOMqqnkVzrm0SdG6UOoqKLsabgH5C9okWi0dh2l9GKJl";
+ };
+}