Put in earplugs
This commit is contained in:
parent
f3475b656a
commit
570d8fffb5
2 changed files with 31 additions and 13 deletions
|
@ -49,7 +49,8 @@ Include non-free linux kernel, modules and firmware from the [[https://gitlab.c
|
||||||
xorg
|
xorg
|
||||||
samba
|
samba
|
||||||
sound
|
sound
|
||||||
mail)
|
mail
|
||||||
|
vpn)
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
** package modules
|
** package modules
|
||||||
|
@ -261,14 +262,22 @@ 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/24"))
|
(addresses '("10.0.0.23" "fd24:609a:6c18::23")
|
||||||
|
(port 51820)))
|
||||||
(peers
|
(peers
|
||||||
(list
|
(list
|
||||||
(wireguard-peer
|
(wireguard-peer
|
||||||
(name "lmn")
|
(name "lmn")
|
||||||
(endpoint "10.0.0.1:51820")
|
(endpoint "example.org:51820")
|
||||||
(public-key "WHmVhvgxkBxk8fqZU6pWEaH4iVzOcud9JQivwRsaIE8=")
|
(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
|
#+END_SRC
|
||||||
|
|
||||||
*** display manager
|
*** display manager
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
;; -*- mode: scheme; coding: utf-8; -*-
|
;; -*- 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)
|
(use-modules (gnu)
|
||||||
(gnu packages)
|
(gnu packages)
|
||||||
|
@ -22,7 +22,8 @@
|
||||||
xorg
|
xorg
|
||||||
samba
|
samba
|
||||||
sound
|
sound
|
||||||
mail)
|
mail
|
||||||
|
vpn)
|
||||||
|
|
||||||
(use-package-modules admin
|
(use-package-modules admin
|
||||||
certs
|
certs
|
||||||
|
@ -159,14 +160,22 @@ COMMIT
|
||||||
|
|
||||||
(service wireguard-service-type
|
(service wireguard-service-type
|
||||||
(wireguard-configuration
|
(wireguard-configuration
|
||||||
(addresses '("10.0.0.23/24"))
|
(addresses '("10.0.0.23" "fd24:609a:6c18::23")
|
||||||
|
(port 51820)))
|
||||||
(peers
|
(peers
|
||||||
(list
|
(list
|
||||||
(wireguard-peer
|
(wireguard-peer
|
||||||
(name "lmn")
|
(name "lmn")
|
||||||
(endpoint "10.0.0.1:51820")
|
(endpoint "example.org:51820")
|
||||||
(public-key "WHmVhvgxkBxk8fqZU6pWEaH4iVzOcud9JQivwRsaIE8=")
|
(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
|
;; (service sddm-service-type
|
||||||
;; (sddm-configuration
|
;; (sddm-configuration
|
||||||
|
|
Loading…
Reference in a new issue