nixos-config/linux/blitzar/syncthing.nix

14 lines
202 B
Nix

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