diff options
author | makefu <github@syntax-fehler.de> | 2015-08-31 10:47:29 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2015-08-31 10:47:29 +0200 |
commit | 2eb8bcf9d1c293a8b28730c9a12d9a857c5a43a7 (patch) | |
tree | c8a1d55a148e59f51a400e0d5dc11780d4e4005c /krebs/5pkgs/github-known_hosts/default.nix | |
parent | 0acd7f23e1e3adf4bf1427f186a7bf5505ff910d (diff) | |
parent | 83f06535de527c7470f8ff9c8b5e3a4632cf7cb9 (diff) |
Merge remote-tracking branch 'cd/master'
Diffstat (limited to 'krebs/5pkgs/github-known_hosts/default.nix')
-rw-r--r-- | krebs/5pkgs/github-known_hosts/default.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/krebs/5pkgs/github-known_hosts/default.nix b/krebs/5pkgs/github-known_hosts/default.nix new file mode 100644 index 000000000..fe5efe413 --- /dev/null +++ b/krebs/5pkgs/github-known_hosts/default.nix @@ -0,0 +1,13 @@ +{ lib, ... }: + +with builtins; +with lib; + +let + github-pubkey = removeSuffix "\n" (readFile ./github.ssh.pub); +in + +toFile "github-known_hosts" + (concatMapStrings + (i: "github.com,192.30.252.${toString i} ${github-pubkey}\n") + (range 0 255)) |