Add raccoon peer to wireguard

It routes traffic from fox, apex and the compute nodes so that we can
reach the git servers and tent.
This commit is contained in:
2025-09-25 15:01:33 +02:00
parent 4a97ca2e18
commit 1c0e002079
10 changed files with 76 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
{ pkgs, ... }:
{
networking.hosts = {
# Remote hosts visible from compute nodes
"10.106.0.236" = [ "raccoon" ];
"10.0.44.4" = [ "tent" ];
};
}