aboutsummaryrefslogtreecommitdiff
path: root/hosts/ganymede/wireguard.nix
diff options
context:
space:
mode:
authorCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2026-08-20 12:34:03 -0500
committerCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2026-08-20 12:34:03 -0500
commit967ec14cba166079d71d67f4137ee62fca315d62 (patch)
treed440d4443b181c54a21b64197f03b757a90b6d14 /hosts/ganymede/wireguard.nix
parent2b1c6161c5d2381cbfe224694dfb218aee0b6da1 (diff)
rekey a bunch of secrets, other stuff
Diffstat (limited to 'hosts/ganymede/wireguard.nix')
-rw-r--r--hosts/ganymede/wireguard.nix14
1 files changed, 0 insertions, 14 deletions
diff --git a/hosts/ganymede/wireguard.nix b/hosts/ganymede/wireguard.nix
index 3c3f1d6..27d50bb 100644
--- a/hosts/ganymede/wireguard.nix
+++ b/hosts/ganymede/wireguard.nix
@@ -11,24 +11,10 @@
networking.firewall = {
allowedUDPPorts = [51820];
- allowedTCPPorts = [51843];
trustedInterfaces = ["wg0"];
};
- systemd.services.udp2raw-server = {
- description = "udp2raw WireGuard transport";
- wantedBy = ["multi-user.target"];
- after = ["network-online.target"];
- wants = ["network-online.target"];
-
- serviceConfig = {
- ExecStart = "${lib.getExe pkgs.udp2raw} -s -l 0.0.0.0:51843 -r 127.0.0.1:51820 -k shared-secret -a";
- Restart = "on-failure";
- RestartSec = "2s";
- };
- };
-
systemd.network.netdevs."50-wg0" = {
netdevConfig = {
Kind = "wireguard";