Put in earplugs

This commit is contained in:
nik gaffney 2024-01-23 17:18:56 +01:00
parent f3475b656a
commit 570d8fffb5
Signed by: nik
GPG key ID: 989F5E6EDB478160
2 changed files with 31 additions and 13 deletions

View file

@ -49,7 +49,8 @@ Include non-free linux kernel, modules and firmware from the [[https://gitlab.c
xorg
samba
sound
mail)
mail
vpn)
#+end_src
** package modules
@ -261,14 +262,22 @@ 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/24"))
(addresses '("10.0.0.23" "fd24:609a:6c18::23")
(port 51820)))
(peers
(list
(wireguard-peer
(name "lmn")
(endpoint "10.0.0.1:51820")
(endpoint "example.org:51820")
(public-key "WHmVhvgxkBxk8fqZU6pWEaH4iVzOcud9JQivwRsaIE8=")
(allowed-ips '("10.0.0.0/24"))))))))
(allowed-ips '("10.0.0.1/32"))
(keep-alive 25))
(wireguard-peer
(name "beryllium")
(endpoint "example.org:51820")
(public-key "taeID3fNgci9OpE+1UYkS4DYZE6DIlhpLQL1BVN9sg8=")
(allowed-ips '("10.0.0.13/32"))
(keep-alive 25)))))
#+END_SRC
*** display manager

View file

@ -1,6 +1,6 @@
;; -*- mode: scheme; coding: utf-8; -*-
;;
;; tangled from framework13-system.org on 2024-01-22 22:15:56+01:00)
;; tangled from framework13-system.org on 2024-01-23 17:18:20+01:00)
(use-modules (gnu)
(gnu packages)
@ -22,7 +22,8 @@
xorg
samba
sound
mail)
mail
vpn)
(use-package-modules admin
certs
@ -159,14 +160,22 @@ COMMIT
(service wireguard-service-type
(wireguard-configuration
(addresses '("10.0.0.23/24"))
(addresses '("10.0.0.23" "fd24:609a:6c18::23")
(port 51820)))
(peers
(list
(wireguard-peer
(name "lmn")
(endpoint "10.0.0.1:51820")
(endpoint "example.org:51820")
(public-key "WHmVhvgxkBxk8fqZU6pWEaH4iVzOcud9JQivwRsaIE8=")
(allowed-ips '("10.0.0.0/24"))))))))
(allowed-ips '("10.0.0.1/32"))
(keep-alive 25))
(wireguard-peer
(name "beryllium")
(endpoint "example.org:51820")
(public-key "taeID3fNgci9OpE+1UYkS4DYZE6DIlhpLQL1BVN9sg8=")
(allowed-ips '("10.0.0.13/32"))
(keep-alive 25)))))
;; (service sddm-service-type
;; (sddm-configuration