From 48f8bbe5f7717a28742c36c6472d643bf17e9f5e Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Wed, 19 Feb 2025 16:51:13 -0300 Subject: system.scm: Add wireguard peer for "novinho" --- src/guix/system.scm | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/guix/system.scm b/src/guix/system.scm index 715f606..539bbe5 100644 --- a/src/guix/system.scm +++ b/src/guix/system.scm @@ -116,7 +116,8 @@ (list (host "10.0.0.0" "toph") (host "10.0.0.1" "velhinho") - (host "10.0.0.2" "azula"))) + (host "10.0.0.2" "azula") + (host "10.0.0.5" "novinho"))) (service wireguard-service-type (wireguard-configuration (addresses '("10.0.0.0/32")) @@ -131,6 +132,11 @@ (name "azula") (public-key "8IxSFlJoFuTzLtIkoKZH4CkUbIxd6++E0lBOin/7rT8=") (allowed-ips '("10.0.0.2/32")) + (keep-alive 25)) + (wireguard-peer + (name "novinho") + (public-key "WKOAyNVPxYB9H7ga1A0DfUrZGMUFyC3RCIvUC7u9/RA=") + (allowed-ips '("10.0.0.5/32")) (keep-alive 25)))))) (service q:shadow-group-service-type) (service q:dkimproxyout-service-type) -- cgit v1.2.3