9 lines
184 B
Nix
9 lines
184 B
Nix
|
{ config, pkgs, ... }:
|
||
|
{
|
||
|
services.syncthing = {
|
||
|
enable = true;
|
||
|
user = "cyryl";
|
||
|
dataDir = "/home/cyryl/.syncthing";
|
||
|
openDefaultPorts = true;
|
||
|
};
|
||
|
}
|