NixOS-Config/modules/system/devices/networking/wireguard/pc/default.nix
2024-10-20 18:56:59 -04:00

23 lines
537 B
Nix

{ config, ... }:
{
networking.firewall = {
allowedUDPPorts = [ 51820 ];
};
networking.wireguard.interfaces = {
"${config.ips.wgInt}" = {
# Define IP of client in per device config
listenPort = 51820;
privateKey = config.secrets.wgClientPriv;
peers = [
{
publicKey = config.secrets.wgServerPub;
allowedIPs = [ "${config.ips.wgSpan}.0/24" ];
endpoint = "sv.${config.secrets.jimDomain}:51820";
persistentKeepalive = 25;
}
];
};
};
}