From 08336dab4be4a0efdf00a6b4f014bfb679faa6b2 Mon Sep 17 00:00:00 2001 From: nik gaffney Date: Wed, 24 Jan 2024 22:30:06 +0100 Subject: [PATCH] Put in earplugs --- config/framework13-system.org | 6 +++--- config/framework13-system.scm | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/config/framework13-system.org b/config/framework13-system.org index 4620b38..72743da 100644 --- a/config/framework13-system.org +++ b/config/framework13-system.org @@ -304,7 +304,7 @@ details can be found (and mostly ignored) in [[https://guix.gnu.org/cookbook/en #+BEGIN_SRC scheme :session (service wireguard-service-type (wireguard-configuration - (addresses '("10.0.0.23" "fd24:609a:6c18::23")) + (addresses '("10.0.0.23/24" "fd24:609a:6c18::23/64")) (private-key "/etc/wireguard/private.key") (port 51820) (peers @@ -313,13 +313,13 @@ details can be found (and mostly ignored) in [[https://guix.gnu.org/cookbook/en (name "lmn") (endpoint "example.org:51820") (public-key "WHmVhvgxkBxk8fqZU6pWEaH4iVzOcud9JQivwRsaIE8=") - (allowed-ips '("10.0.0.1/32" "fd24:609a:6c18::1")) + (allowed-ips '("10.0.0.1/24" "fd24:609a:6c18::1/64")) (keep-alive 25)) (wireguard-peer (name "beryllium") (endpoint "example.org:51820") (public-key "taeID3fNgci9OpE+1UYkS4DYZE6DIlhpLQL1BVN9sg8=") - (allowed-ips '("10.0.0.13/32" "fd24:609a:6c18::13")) + (allowed-ips '("10.0.0.13/24" "fd24:609a:6c18::13/64")) (keep-alive 25)))))) #+END_SRC diff --git a/config/framework13-system.scm b/config/framework13-system.scm index 27fbeae..0f96299 100644 --- a/config/framework13-system.scm +++ b/config/framework13-system.scm @@ -1,6 +1,6 @@ ;; -*- mode: scheme; coding: utf-8; -*- ;; -;; tangled from framework13-system.org on 2024-01-24 18:56:02+01:00) +;; tangled from framework13-system.org on 2024-01-24 22:29:53+01:00) (use-modules (gnu) (gnu packages) @@ -188,7 +188,7 @@ COMMIT (service wireguard-service-type (wireguard-configuration - (addresses '("10.0.0.23" "fd24:609a:6c18::23")) + (addresses '("10.0.0.23/24" "fd24:609a:6c18::23/64")) (private-key "/etc/wireguard/private.key") (port 51820) (peers @@ -197,13 +197,13 @@ COMMIT (name "lmn") (endpoint "example.org:51820") (public-key "WHmVhvgxkBxk8fqZU6pWEaH4iVzOcud9JQivwRsaIE8=") - (allowed-ips '("10.0.0.1/32" "fd24:609a:6c18::1")) + (allowed-ips '("10.0.0.1/24" "fd24:609a:6c18::1/64")) (keep-alive 25)) (wireguard-peer (name "beryllium") (endpoint "example.org:51820") (public-key "taeID3fNgci9OpE+1UYkS4DYZE6DIlhpLQL1BVN9sg8=") - (allowed-ips '("10.0.0.13/32" "fd24:609a:6c18::13")) + (allowed-ips '("10.0.0.13/24" "fd24:609a:6c18::13/64")) (keep-alive 25)))))) ;; (service sddm-service-type