10 lines
214 B
Nix
10 lines
214 B
Nix
|
{ config, ... }:
|
||
|
|
||
|
{
|
||
|
config = {
|
||
|
services.syncthing.enable = true;
|
||
|
xdg.configFile."syncthing/config.xml".source = ./syncthing.xml;
|
||
|
xdg.userDirs.music = "${config.home.homeDirectory}/sync/Music";
|
||
|
};
|
||
|
}
|