26 lines
909 B
Nix
26 lines
909 B
Nix
{ config, factsGenerator, ... }:
|
|
{
|
|
networking.firewall.allowedUDPPorts = [ 51820 ];
|
|
clanCore.facts.services.wireguard = factsGenerator.wireguard { name = "wg0"; };
|
|
|
|
# Enable WireGuard
|
|
networking.wg-quick.interfaces = {
|
|
# Hub and Spoke Setup
|
|
# https://www.procustodibus.com/blog/2020/11/wireguard-hub-and-spoke-config/
|
|
wg0 = {
|
|
address = [ "10.100.0.7/32" ];
|
|
listenPort = 51820; # to match firewall allowedUDPPorts (without this wg uses random port numbers)
|
|
privateKeyFile = config.clanCore.facts.services.wireguard.secret."wireguard.wg0.key".path;
|
|
mtu = 1280;
|
|
|
|
peers = [
|
|
{
|
|
publicKey = (builtins.readFile "${config.clanCore.clanDir}/machines/orbi/facts/wireguard.wg0.pub");
|
|
allowedIPs = [ "10.100.0.1/24" ];
|
|
#endpoint = "ingolf-wagner.de:51820";
|
|
endpoint = "95.216.66.212:51820";
|
|
}
|
|
];
|
|
};
|
|
};
|
|
}
|