diff options
author | lassulus <lassulus@lassul.us> | 2021-01-24 14:47:50 +0100 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2021-01-24 14:47:50 +0100 |
commit | 8e5eb283f4f06a87ab228ad2a0d3a9a6e3ffd737 (patch) | |
tree | 429a496fe237fff55176a5f8e8d4ca036cc8e6d9 | |
parent | cefb50f5f1509c06f92453e09fb63ad71a746fe0 (diff) |
l syncthing: just configure used peers
-rw-r--r-- | lass/2configs/syncthing.nix | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lass/2configs/syncthing.nix b/lass/2configs/syncthing.nix index d31ce7800..50f282640 100644 --- a/lass/2configs/syncthing.nix +++ b/lass/2configs/syncthing.nix @@ -1,6 +1,9 @@ { config, pkgs, ... }: with import <stockholm/lib>; let - all_peers = filterAttrs (n: v: v.syncthing.id != null) config.krebs.hosts; mk_peers = mapAttrs (n: v: { id = v.syncthing.id; }); + + all_peers = filterAttrs (n: v: v.syncthing.id != null) config.krebs.hosts; + used_peer_names = unique (flatten (mapAttrsToList (n: v: v.devices) config.services.syncthing.declarative.folders)); + used_peers = filterAttrs (n: v: elem n used_peer_names) all_peers; in { services.syncthing = { enable = true; @@ -9,7 +12,7 @@ in { declarative = { key = toString <secrets/syncthing.key>; cert = toString <secrets/syncthing.cert>; - devices = mk_peers all_peers; + devices = mk_peers used_peers; }; }; krebs.iptables.tables.filter.INPUT.rules = [ |