From ccb05b35aebc291ccebfcac97556c9389e16a0bf Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Wed, 4 Oct 2023 13:29:29 +0800 Subject: [PATCH] hosts/plover: remove unused bindings --- hosts/plover/modules/services/wireguard.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/hosts/plover/modules/services/wireguard.nix b/hosts/plover/modules/services/wireguard.nix index 5a5cd052..d74b3708 100644 --- a/hosts/plover/modules/services/wireguard.nix +++ b/hosts/plover/modules/services/wireguard.nix @@ -3,12 +3,9 @@ # Take note this service is heavily based on the hardware networking setup of # this host so better stay focused on the hardware configuration on this host. let - acmeName = "wireguard.${config.networking.domain}"; - inherit (builtins) toString; inherit (import ../hardware/networks.nix) interfaces wireguardPort wireguardPeers; wireguardIFName = interfaces.wireguard0.ifname; - lanIFName = interfaces.lan.ifname; desktopPeerAddresses = with wireguardPeers.desktop; [ "${IPv4}/32" "${IPv6}/128" ]; phonePeerAddresses = with wireguardPeers.phone; [ "${IPv4}/32" "${IPv6}/128" ];