1
0

pkgs/well-known-ssh-known-hosts: Pin some regularly used SSH host keys

This commit is contained in:
2025-11-16 15:00:05 +01:00
parent f17a94c578
commit fc4bc6ca41
4 changed files with 38 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
{ runCommand, ... }:
runCommand "well-known-ssh-known-hosts" {} ''
mkdir -p $out
cp ${./well-known-ssh-known-hosts} $out/known_hosts
''