nixos-config/2configs/sync/share/omo.nix
2024-08-04 23:31:57 +02:00

25 lines
630 B
Nix

{
services.syncthing.user = "download";
services.syncthing.settings.folders = {
the_playlist = {
path = "/media/silent/music/the_playlist";
devices = [ "mors" "prism" ];
};
manga = {
path = "/media/crypt1/sync/manga";
id = "makefu-manga";
devices = [ "gum" "makefu-ebook" "makefu-phone" "x" ];
};
audiobooks = {
path = "/media/crypt1/sync/audiobooks";
id = "makefu-audiobooks";
devices = [ "omo" "gum" "makefu-phone" "x" ];
};
download = {
path = "/media/crypt1/download";
id = "makefu-download";
devices = [ "gum" ];
};
};
}