1
0
Fork 0
nixos-config/homes/fb4/syncthing.nix
2018-04-02 17:52:16 +02:00

19 lines
433 B
Nix

{ pkgs, ... }:
{
systemd.user = {
services.syncthing = {
Unit = {
Description = "Syncthing";
ConditionHost = "fb04217";
Wants= "syncthing-inotify.service";
};
Service = {
ExecStart="${pkgs.syncthing}/bin/syncthing -no-browser -no-restart -logflags=0";
Restart="on-failure";
SuccessExitStatus="3 4";
RestartForceExitStatus="3 4";
};
};
};
}