diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/hosts.nix | 7 |
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; }) ]; |