Add gitlab known hosts

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2025-07-28 15:38:14 +01:00
parent 084fda4ba6
commit 7f9a1dcb66
6 changed files with 35 additions and 3 deletions

View File

@@ -0,0 +1,21 @@
{
pkgs,
inputs,
system,
...
}:
pkgs.stdenv.mkDerivation {
pname = "ssh-known-hosts-github";
version = "0-unstable-2025-02-25";
src = inputs.self.lib.${system}.fetchers.sshKnownHosts {
host = "gitlab.com";
hash = "sha256-5flUNj4vKn1Y2YE8bkUcsW3kQLRKn8WB3uPUxlhZMTk=";
};
phases = [ "installPhase" ];
installPhase = ''
cp $src $out
'';
}