Put in earplugs

This commit is contained in:
nik gaffney 2024-01-24 22:30:06 +01:00
parent 711ac1b07e
commit 08336dab4b
Signed by: nik
GPG key ID: 989F5E6EDB478160
2 changed files with 7 additions and 7 deletions

View file

@ -304,7 +304,7 @@ details can be found (and mostly ignored) in [[https://guix.gnu.org/cookbook/en
#+BEGIN_SRC scheme :session #+BEGIN_SRC scheme :session
(service wireguard-service-type (service wireguard-service-type
(wireguard-configuration (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") (private-key "/etc/wireguard/private.key")
(port 51820) (port 51820)
(peers (peers
@ -313,13 +313,13 @@ details can be found (and mostly ignored) in [[https://guix.gnu.org/cookbook/en
(name "lmn") (name "lmn")
(endpoint "example.org:51820") (endpoint "example.org:51820")
(public-key "WHmVhvgxkBxk8fqZU6pWEaH4iVzOcud9JQivwRsaIE8=") (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)) (keep-alive 25))
(wireguard-peer (wireguard-peer
(name "beryllium") (name "beryllium")
(endpoint "example.org:51820") (endpoint "example.org:51820")
(public-key "taeID3fNgci9OpE+1UYkS4DYZE6DIlhpLQL1BVN9sg8=") (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)))))) (keep-alive 25))))))
#+END_SRC #+END_SRC

View file

@ -1,6 +1,6 @@
;; -*- mode: scheme; coding: utf-8; -*- ;; -*- 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) (use-modules (gnu)
(gnu packages) (gnu packages)
@ -188,7 +188,7 @@ COMMIT
(service wireguard-service-type (service wireguard-service-type
(wireguard-configuration (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") (private-key "/etc/wireguard/private.key")
(port 51820) (port 51820)
(peers (peers
@ -197,13 +197,13 @@ COMMIT
(name "lmn") (name "lmn")
(endpoint "example.org:51820") (endpoint "example.org:51820")
(public-key "WHmVhvgxkBxk8fqZU6pWEaH4iVzOcud9JQivwRsaIE8=") (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)) (keep-alive 25))
(wireguard-peer (wireguard-peer
(name "beryllium") (name "beryllium")
(endpoint "example.org:51820") (endpoint "example.org:51820")
(public-key "taeID3fNgci9OpE+1UYkS4DYZE6DIlhpLQL1BVN9sg8=") (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)))))) (keep-alive 25))))))
;; (service sddm-service-type ;; (service sddm-service-type