diff options
author | lassulus <lass@lassul.us> | 2017-04-16 23:35:25 +0200 |
---|---|---|
committer | lassulus <lass@lassul.us> | 2017-04-16 23:35:25 +0200 |
commit | 7a48255b5a88e548eaf36ecdebb66fac96a04602 (patch) | |
tree | 21047fa29481ee179a8e34737d0c9f289f82c9f8 /lass/2configs/syncthing.nix | |
parent | b6b39b69ff8cf5aea15e9d31a23c58e9a2cd5ab1 (diff) |
l 2: add syncthing.nix
Diffstat (limited to 'lass/2configs/syncthing.nix')
-rw-r--r-- | lass/2configs/syncthing.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lass/2configs/syncthing.nix b/lass/2configs/syncthing.nix new file mode 100644 index 000000000..cef43d1e6 --- /dev/null +++ b/lass/2configs/syncthing.nix @@ -0,0 +1,12 @@ +{ config, pkgs, ... }: +with import <stockholm/lib>; +{ + services.syncthing = { + enable = true; + useInotify = true; + }; + krebs.iptables.tables.filter.INPUT.rules = [ + { predicate = "-p tcp --dport 22000"; target = "ACCEPT";} + { predicate = "-p udp --dport 21027"; target = "ACCEPT";} + ]; +} |