summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorSimon Parri <simonparri@ganzeria.com>2025-06-26 00:01:24 -0500
committerSimon Parri <simonparri@ganzeria.com>2025-06-26 00:01:24 -0500
commit501dc8584a5e03471dadd758ed0315838a9904bc (patch)
tree4f18367a2f73aaae80fd79451365777260196334 /modules
parentb58c772ed7bb0ed75244915eec2a56312094d8fa (diff)
downloadnixos-config-501dc8584a5e03471dadd758ed0315838a9904bc.tar.gz
nixos-config-501dc8584a5e03471dadd758ed0315838a9904bc.zip
modules/hosts: Add ba.ln.ea.cx as default Yggdrasil peer
Diffstat (limited to 'modules')
-rw-r--r--modules/hosts.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/hosts.nix b/modules/hosts.nix
index 79ac3e6..14ab9f7 100644
--- a/modules/hosts.nix
+++ b/modules/hosts.nix
@@ -35,7 +35,12 @@ in
};
services.yggdrasil = lib.mkMerge [
- { persistentKeys = true; }
+ {
+ persistentKeys = true;
+ settings = {
+ Peers = [ "quic://ba.ln.ea.cx" ];
+ };
+ }
(lib.mkIf cfg.yggdrasil.public or cfg.yggdrasil.private
{ enable = lib.mkDefault true; })
];