diff options
-rw-r--r-- | etc/guix/system.scm | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/etc/guix/system.scm b/etc/guix/system.scm index 4269ad6..2d5e5c7 100644 --- a/etc/guix/system.scm +++ b/etc/guix/system.scm @@ -27,6 +27,7 @@ (heredoc:enable-syntax) (define whoami "andreh") +(define toph "arrobaponto.org") (operating-system @@ -94,14 +95,14 @@ (service gnome-keyring-service-type) (service wireguard-service-type (wireguard-configuration - (addresses '("10.0.2.2/24")) + (addresses '("10.0.0.1/32")) (peers (list (wireguard-peer - (name "kuvira") - (endpoint "euandreh.xyz:51820") - (public-key "FwXqY9wXO8jK/D7lyprI+cslVeb9AqOQBAbxKG6S5lE=") - (allowed-ips '("10.0.2.1/32")) + (name "toph") + (endpoint (string-append toph ":51820")) + (public-key "8jJgTIWrs7HNWlJXOwl8A0DKqIiAGa4hhh/hcXm4EUs=") + (allowed-ips '("10.0.0.0/24")) (keep-alive 25)))))) (service qemu-binfmt-service-type (qemu-binfmt-configuration |