1
0

pkgs/clerie-ssh-known-hosts: Pin some more SSH host keys that can net be retrieved automatically

This commit is contained in:
2025-11-16 16:05:57 +01:00
parent bc8d681956
commit 1ab3ae3769
2 changed files with 15 additions and 1 deletions

View File

@@ -17,5 +17,9 @@ in writeTextFile {
destination = "/known_hosts";
allowSubstitutes = true;
preferLocalBuild = false;
text = knownHosts;
text = ''
${knownHosts}
${builtins.readFile ./additional-ssh-known-hosts}
'';
}