nixos-config/linux/nebula/syncthing.nix

13 lines
205 B
Nix

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