stockholm/lass/2configs/syncthing.nix

16 lines
456 B
Nix
Raw Normal View History

2021-01-24 14:06:54 +00:00
{ config, pkgs, ... }: with import <stockholm/lib>;
{
imports = [ <stockholm/krebs/2configs/syncthing.nix> ];
2017-04-16 21:35:25 +00:00
services.syncthing = {
2019-04-07 16:44:57 +00:00
group = "syncthing";
2017-04-16 21:35:25 +00:00
};
krebs.iptables.tables.filter.INPUT.rules = [
{ predicate = "-p tcp --dport 22000"; target = "ACCEPT";}
{ predicate = "-p udp --dport 21027"; target = "ACCEPT";}
];
2019-04-07 16:44:57 +00:00
system.activationScripts.syncthing-home = mkDefault ''
2019-04-07 16:44:57 +00:00
${pkgs.coreutils}/bin/chmod a+x /home/lass
'';
2017-04-16 21:35:25 +00:00
}