diff options
| author | Martin Fischer <martin@push-f.com> | 2026-09-24 10:48:25 +0200 |
|---|---|---|
| committer | Martin Fischer <martin@push-f.com> | 2026-09-24 10:48:29 +0200 |
| commit | 75eb6609a4bd448c0a8f6766175aff275997847e (patch) | |
| tree | 2813f784d53c26ada7fa1d6e96171da8b81d5ec0 | |
| parent | 282d0e22d0220256bc955834e7bca283655a262d (diff) | |
tweak(shared): set name for wireguard peer
Without a name NixOS put the public key into the
systemd service name, which was quite awkward.
| -rw-r--r-- | nixos/shared/vpn.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nixos/shared/vpn.nix b/nixos/shared/vpn.nix index 4015edb..2f24f5c 100644 --- a/nixos/shared/vpn.nix +++ b/nixos/shared/vpn.nix @@ -18,6 +18,7 @@ peers = [ { + name = "xeovo"; publicKey = "sb61ho9MhaxhJd6WSrryVmknq0r6oHEW7PP5i4lzAgM="; allowedIPs = ["0.0.0.0/0"]; endpoint = "se.gw.xeovo.com:51820"; |
