dotfiles/nixos/syncthing.nix

11 lines
204 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;
2020-11-01 15:25:11 +00:00
package = pkgs.unstable.syncthing;
2019-11-12 22:47:38 +00:00
};
}