Update Wireguard client also
This commit is contained in:
parent
08827b5d5d
commit
48a2e3211d
12 changed files with 128 additions and 110 deletions
15
hosts/tower/network/default.nix
Normal file
15
hosts/tower/network/default.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{ ... }:
|
||||
{
|
||||
networking.firewall.allowedUDPPorts = [ 27015 ];
|
||||
|
||||
systemd.network = {
|
||||
netdevs."10-wg0".wireguardPeers = [
|
||||
{ # Local server
|
||||
PublicKey = "qnOT/lXOJMaQgDUdXpyfGZB2IEyUouRje2m/bCe9ux8=";
|
||||
AllowedIPs = [ "11.0.0.0/8" ];
|
||||
Endpoint = "10.2.0.1:51820";
|
||||
}
|
||||
];
|
||||
networks."wg0".address = [ "11.0.0.100/8" ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue