Adapt Wireguard configuration to upstream changes

This commit is contained in:
coolneng 2024-08-13 14:21:42 +02:00
parent 907e108f8c
commit 6eb9f538c5
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
1 changed files with 10 additions and 16 deletions

View File

@ -78,11 +78,9 @@ in {
FirewallMark = 34952;
};
wireguardPeers = [{
wireguardPeerConfig = {
PublicKey = "GN8lqPBZYOulh6xD4GhkoEWI65HMMCpSxJSH5871YnU=";
AllowedIPs = [ "0.0.0.0/0" ];
Endpoint = "coolneng.duckdns.org:1194";
};
}];
};
systemd.network.networks."wg0" = {
@ -96,19 +94,15 @@ in {
MulticastDNS = "yes";
};
routingPolicyRules = [{
routingPolicyRuleConfig = {
FirewallMark = 34952;
InvertRule = true;
Table = 1000;
Priority = 10;
};
}];
routes = [{
routeConfig = {
Gateway = "10.8.0.1";
GatewayOnLink = true;
Table = 1000;
};
}];
};