2024-09-30 13:16:48 +02:00
|
|
|
{pkgs, ...}: {
|
|
|
|
sops.secrets."wireguard/private_key".owner = "root";
|
|
|
|
|
|
|
|
networking.nat.enable = true;
|
|
|
|
networking.nat.externalInterface = "ens3";
|
|
|
|
networking.nat.internalInterfaces = ["wg0"];
|
|
|
|
networking.firewall = {
|
|
|
|
allowedUDPPorts = [993];
|
|
|
|
};
|
|
|
|
|
|
|
|
networking.wireguard.interfaces = {
|
|
|
|
# "wg0" is the network interface name. You can name the interface arbitrarily.
|
|
|
|
wg0 = {
|
|
|
|
# Determines the IP address and subnet of the server's end of the tunnel interface.
|
|
|
|
ips = ["10.8.0.1/24"];
|
|
|
|
|
|
|
|
# The port that WireGuard listens to. Must be accessible by the client.
|
|
|
|
listenPort = 993;
|
|
|
|
|
|
|
|
# This allows the wireguard server to route your traffic to the internet and hence be like a VPN
|
|
|
|
# For this to work you have to set the dnsserver IP of your router (or dnsserver of choice) in your clients
|
|
|
|
postSetup = ''
|
2024-10-02 09:18:41 +02:00
|
|
|
${pkgs.iptables}/bin/iptables -t nat -A POSTROUTING -s 10.8.0.0/24 -o ens3 -j MASQUERADE
|
2024-09-30 13:16:48 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
# This undoes the above command
|
|
|
|
postShutdown = ''
|
2024-10-02 09:18:41 +02:00
|
|
|
${pkgs.iptables}/bin/iptables -t nat -D POSTROUTING -s 10.8.0.0/24 -o ens3 -j MASQUERADE
|
2024-09-30 13:16:48 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
# Path to the private key file.
|
|
|
|
#
|
|
|
|
# Note: The private key can also be included inline via the privateKey option,
|
|
|
|
# but this makes the private key world-readable; thus, using privateKeyFile is
|
|
|
|
# recommended.
|
|
|
|
privateKeyFile = "/run/secrets/wireguard/private_key";
|
|
|
|
|
|
|
|
peers = [
|
|
|
|
{
|
|
|
|
# Pixel
|
|
|
|
publicKey = "xMO5xTvBXtikri0WS9wpzGvSWITjkQV5oUOYwFjqB0g=";
|
|
|
|
allowedIPs = ["10.8.0.69/32"];
|
|
|
|
}
|
|
|
|
{
|
|
|
|
# Zephyrus
|
2024-10-09 11:13:36 +02:00
|
|
|
publicKey = "42Vj5VG4bJpOUE7j5UW28IFSmPlV+X3tIA9ne55W0Fo=";
|
2024-09-30 13:16:48 +02:00
|
|
|
allowedIPs = ["10.8.0.42/32"];
|
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|