10 lines
201 B
Nix
10 lines
201 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
services.syncthing = {
|
|
enable = true;
|
|
dataDir = "${config.home.homeDirectory}/syncthing/data";
|
|
configDir = "${config.home.homeDirectory}/syncthing/conf";
|
|
};
|
|
}
|