diff options
author | lassulus <lassulus@lassul.us> | 2019-03-22 08:07:04 +0100 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2019-03-22 08:07:52 +0100 |
commit | 96fc1908a2488fd4ccedfea7b6bdf64425de2e83 (patch) | |
tree | 274e50248fdec8cebb464a1b33a21dfeafe7b4a9 /lass/2configs/syncthing.nix | |
parent | 90ab9c288e0baa6f2e7f7b2e7cdffd10bda89938 (diff) |
l syncthing: use module
Diffstat (limited to 'lass/2configs/syncthing.nix')
-rw-r--r-- | lass/2configs/syncthing.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lass/2configs/syncthing.nix b/lass/2configs/syncthing.nix index 17debf822..164e89679 100644 --- a/lass/2configs/syncthing.nix +++ b/lass/2configs/syncthing.nix @@ -8,4 +8,13 @@ with import <stockholm/lib>; { predicate = "-p tcp --dport 22000"; target = "ACCEPT";} { predicate = "-p udp --dport 21027"; target = "ACCEPT";} ]; + krebs.syncthing = { + enable = true; + cert = toString <secrets/syncthing.cert>; + key = toString <secrets/syncthing.key>; + peers = mapAttrs (n: v: { id = v.syncthing.id; }) (filterAttrs (n: v: v.syncthing.id != null) config.krebs.hosts); + folders = [ + { path = "/tmp/testsync"; peers = [ "icarus" "mors" "skynet" ]; } + ]; + }; } |