nixos-config/linux/nebula/syncthing.nix

12 lines
184 B
Nix

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