dotfiles/nixos/syncthing.nix

11 lines
195 B
Nix
Raw Normal View History

2019-04-21 10:18:35 +01:00
{ config, pkgs, ... }:
2019-11-12 22:47:38 +00:00
{
services.syncthing = {
enable = true;
user = "cyryl";
dataDir = "/home/cyryl/.syncthing";
openDefaultPorts = true;
2019-12-10 18:16:45 +00:00
package = pkgs.syncthing;
2019-11-12 22:47:38 +00:00
};
}