nixos-config/linux/nebula/syncthing.nix

11 lines
178 B
Nix
Raw Permalink Normal View History

2024-08-14 11:14:20 -07:00
{...}: {
2024-03-03 00:11:51 -08:00
services.syncthing = {
2023-10-09 10:44:07 -07:00
enable = true;
2024-03-03 00:11:51 -08:00
settings.folders.music = {
2024-12-10 06:37:28 +00:00
devices = ["quasar"];
2024-03-03 00:11:51 -08:00
path = "~/Music";
type = "receiveonly";
2023-10-09 10:44:07 -07:00
};
};
}