14 lines
202 B
Nix
14 lines
202 B
Nix
{ ... }:
|
|
|
|
{
|
|
services.syncthing = {
|
|
enable = true;
|
|
settings.folders.music = {
|
|
enable = true;
|
|
devices = [ "nebula" ];
|
|
path = "~/Music";
|
|
type = "sendonly";
|
|
};
|
|
};
|
|
}
|
|
|