nixos-config/linux/protostar/syncthing.nix

18 lines
315 B
Nix
Raw Normal View History

2024-03-03 00:11:51 -08:00
{ ... }:
2024-03-02 15:10:23 -08:00
{
2024-03-03 00:11:51 -08:00
services.syncthing = {
2024-03-02 15:10:23 -08:00
enable = true;
2024-03-02 15:29:23 -08:00
# settings = let pc = "blitzar"; in {
# folders.music = {
# enable = true;
# devices = [ pc ];
# id = "Music";
# label = "Music";
# path = "~/Music";
# type = "receiveonly";
# };
# };
2024-03-02 15:10:23 -08:00
};
}