diff options
author | Simon Parri <simonparri@ganzeria.com> | 2025-07-12 14:15:56 +0200 |
---|---|---|
committer | Simon Parri <simonparri@ganzeria.com> | 2025-07-12 14:15:56 +0200 |
commit | d84914f41d6ca2722be522cf9a1722a6fdc556d6 (patch) | |
tree | 8e7e9e423422e30fdc0c2b3c3c683bce9d3a7226 /modules | |
parent | 5cc655271039b416d6455eaf484146a146be5d3e (diff) | |
download | nixos-config-d84914f41d6ca2722be522cf9a1722a6fdc556d6.tar.gz nixos-config-d84914f41d6ca2722be522cf9a1722a6fdc556d6.zip |
modules/hosts: Cap Yggdrasil peer backoff time to 2 minutes
Diffstat (limited to 'modules')
-rw-r--r-- | modules/hosts.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/hosts.nix b/modules/hosts.nix index 42d0458..1a56291 100644 --- a/modules/hosts.nix +++ b/modules/hosts.nix @@ -43,7 +43,7 @@ in { persistentKeys = true; settings = { - Peers = [ "quic://ba.ln.ea.cx:9003" ]; + Peers = [ "quic://ba.ln.ea.cx:9003?maxbackoff=2m" ]; }; } (lib.mkIf cfg.yggdrasil.public or cfg.yggdrasil.private |