From 6afe05b5fdc50501a9ac7248c917209eadf268ef Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Fri, 19 Sep 2025 13:18:12 +0200 Subject: [PATCH] Use lowercase peer hostnames MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reviewed-by: Aleix Boné --- m/apex/wireguard.nix | 2 +- m/fox/wireguard.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/m/apex/wireguard.nix b/m/apex/wireguard.nix index 49180a15..607564fe 100644 --- a/m/apex/wireguard.nix +++ b/m/apex/wireguard.nix @@ -18,7 +18,7 @@ # Public key: VwhcN8vSOzdJEotQTpmPHBC52x3Hbv1lkFIyKubrnUA= peers = [ { - name = "Fox"; + name = "fox"; publicKey = "VfMPBQLQTKeyXJSwv8wBhc6OV0j2qAxUpX3kLHunK2Y="; allowedIPs = [ "10.106.0.0/24" ]; endpoint = "fox.ac.upc.edu:666"; diff --git a/m/fox/wireguard.nix b/m/fox/wireguard.nix index 8299d483..d0b4349e 100644 --- a/m/fox/wireguard.nix +++ b/m/fox/wireguard.nix @@ -24,7 +24,7 @@ peers = [ # List of allowed peers. { - name = "Apex"; + name = "apex"; publicKey = "VwhcN8vSOzdJEotQTpmPHBC52x3Hbv1lkFIyKubrnUA="; # List of IPs assigned to this peer within the tunnel subnet. Used to configure routing. allowedIPs = [ "10.106.0.30/32" ];