2024-05-10 02:37:26 +03:00
|
|
|
{ config, pkgs, hostsPath, ... }:
|
2023-03-02 16:00:19 +03:00
|
|
|
|
2023-07-28 18:07:17 +03:00
|
|
|
# Source: https://habr.com/ru/companies/xakep/articles/699000/
|
|
|
|
|
2023-03-02 16:00:19 +03:00
|
|
|
let
|
2024-05-10 02:37:26 +03:00
|
|
|
istalData = import (hostsPath + "/istal/data.secret.nix");
|
|
|
|
tatosData = import (hostsPath + "/tatos/data.secret.nix");
|
2023-07-29 17:21:48 +03:00
|
|
|
port = tatosData.wireguard.port;
|
2023-03-02 16:00:19 +03:00
|
|
|
in
|
|
|
|
{
|
2023-07-28 17:08:13 +03:00
|
|
|
boot.kernel.sysctl."net.ipv4.ip_forward" = 1;
|
|
|
|
boot.kernel.sysctl."net.ipv4.conf.all.forwarding" = 1;
|
|
|
|
|
2023-03-02 16:00:19 +03:00
|
|
|
# enable NAT
|
|
|
|
networking.nat = {
|
|
|
|
enable = true;
|
|
|
|
externalInterface = "eth0";
|
|
|
|
internalInterfaces = [ "wg0" ];
|
|
|
|
};
|
|
|
|
|
2024-04-18 12:54:40 +03:00
|
|
|
networking.firewall.allowedUDPPorts = [ port ];
|
|
|
|
|
2024-04-18 10:51:14 +03:00
|
|
|
services.cron =
|
2024-04-18 12:54:40 +03:00
|
|
|
let update_ru_routes = pkgs.callPackage ./update_ru_routes.nix { }; in
|
|
|
|
let cmd = "${update_ru_routes}/bin/update_ru_routes > /root/update_routes.log 2>&1"; in
|
2024-04-18 10:51:14 +03:00
|
|
|
{
|
|
|
|
enable = true;
|
|
|
|
systemCronJobs = [
|
2024-04-18 12:54:40 +03:00
|
|
|
"@reboot root sleep 30 && ${cmd}"
|
|
|
|
"0 3 * * mon root ${cmd}"
|
2024-04-18 10:51:14 +03:00
|
|
|
];
|
|
|
|
};
|
2024-04-18 10:43:23 +03:00
|
|
|
|
2023-07-28 17:08:13 +03:00
|
|
|
networking.wg-quick.interfaces = {
|
2023-03-02 16:00:19 +03:00
|
|
|
# "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.
|
2023-07-28 17:08:13 +03:00
|
|
|
address = [ "10.20.30.1/32" ];
|
2023-03-02 16:00:19 +03:00
|
|
|
|
|
|
|
# The port that WireGuard listens to. Must be accessible by the client.
|
|
|
|
listenPort = port;
|
|
|
|
|
|
|
|
# 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
|
2023-07-28 17:08:13 +03:00
|
|
|
postUp = ''
|
|
|
|
interface=`${pkgs.iproute}/bin/ip route | ${pkgs.gawk}/bin/awk '/default/ {print $5; exit}'`
|
|
|
|
${pkgs.iptables}/bin/iptables -t nat -A POSTROUTING -o $interface -j MASQUERADE
|
2023-07-29 17:21:48 +03:00
|
|
|
${pkgs.iproute}/bin/ip rule add from ${tatosData.addr} table main
|
2023-03-02 16:00:19 +03:00
|
|
|
'';
|
2023-07-28 17:08:13 +03:00
|
|
|
preDown = ''
|
|
|
|
interface=`${pkgs.iproute}/bin/ip route | ${pkgs.gawk}/bin/awk '/default/ {print $5; exit}'`
|
|
|
|
${pkgs.iptables}/bin/iptables -t nat -D POSTROUTING -o $interface -j MASQUERADE
|
2023-07-29 17:21:48 +03:00
|
|
|
${pkgs.iproute}/bin/ip rule del from ${tatosData.addr} table main
|
2023-03-02 16:00:19 +03:00
|
|
|
'';
|
|
|
|
|
|
|
|
# Path to the private key file.
|
2023-07-29 17:21:48 +03:00
|
|
|
privateKeyFile = config.age.secrets.wireguard-tatos-private.path;
|
2023-03-02 16:00:19 +03:00
|
|
|
|
|
|
|
peers = [
|
2023-07-28 17:08:13 +03:00
|
|
|
# Istal
|
|
|
|
{
|
|
|
|
publicKey = istalData.wireguard.publicKey;
|
|
|
|
allowedIPs = [ "10.20.30.2/32" "0.0.0.0/0" ];
|
|
|
|
}
|
|
|
|
# Home
|
2023-03-02 16:00:19 +03:00
|
|
|
{
|
|
|
|
publicKey = "Gg+p7tysAhu2X841weBiQrqoKXh6kvcmDiCY62rLwQg=";
|
2023-07-28 17:08:13 +03:00
|
|
|
allowedIPs = [ "10.20.30.3/32" ];
|
2023-03-02 16:00:19 +03:00
|
|
|
}
|
2023-07-28 17:08:13 +03:00
|
|
|
# Asus
|
2023-03-02 16:00:19 +03:00
|
|
|
{
|
|
|
|
publicKey = "mzVH0N3q7UE/XjMwgRks+D8KFuIj91VkOK2ytgjsnkw=";
|
2023-07-28 17:08:13 +03:00
|
|
|
allowedIPs = [ "10.20.30.4/32" ];
|
2023-03-02 16:00:19 +03:00
|
|
|
}
|
2024-05-20 18:46:05 +03:00
|
|
|
# Phone 1 j
|
2023-07-28 18:07:17 +03:00
|
|
|
{
|
2023-07-29 22:54:00 +03:00
|
|
|
publicKey = "bwKSB61krDPZV9JVw2ChPCImxqjJHQ2vXvWjbqPy/2o=";
|
2023-07-28 18:07:17 +03:00
|
|
|
allowedIPs = [ "10.20.30.5/32" ];
|
|
|
|
}
|
2024-05-20 18:46:05 +03:00
|
|
|
# Phone 2 m
|
2023-07-28 18:07:17 +03:00
|
|
|
{
|
2024-07-26 14:35:55 +03:00
|
|
|
publicKey = "p1GR0Ax2wrqnnd/coKYA4p0lvhdY9Mkk4iwhPxZfl3I=";
|
2023-07-28 18:07:17 +03:00
|
|
|
allowedIPs = [ "10.20.30.6/32" ];
|
|
|
|
}
|
2024-05-20 18:46:05 +03:00
|
|
|
# Phone 3 n
|
|
|
|
{
|
|
|
|
publicKey = "IUw38F1ik2y2XoPh3Nd1VVxHz9nfKDfNKyzBaEi0rjc=";
|
|
|
|
allowedIPs = [ "10.20.30.7/32" ];
|
|
|
|
}
|
2023-03-02 16:00:19 +03:00
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2023-07-29 17:21:48 +03:00
|
|
|
age.secrets.wireguard-tatos-private = {
|
2024-04-16 02:51:46 +03:00
|
|
|
file = ./wireguard-tatos-private.age;
|
2023-03-02 16:00:19 +03:00
|
|
|
mode = "0400";
|
|
|
|
};
|
|
|
|
}
|