From db3634eb5e86b745e8be260d25eb03ae48a091a9 Mon Sep 17 00:00:00 2001 From: Ingolf Wagner Date: Thu, 25 Apr 2024 11:44:15 +0200 Subject: [PATCH] fix syncthing errors --- nixos/machines/chungus/media-syncthing.nix | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/nixos/machines/chungus/media-syncthing.nix b/nixos/machines/chungus/media-syncthing.nix index 2fb5713..edd0e3f 100644 --- a/nixos/machines/chungus/media-syncthing.nix +++ b/nixos/machines/chungus/media-syncthing.nix @@ -7,11 +7,6 @@ group = "media"; # make some folders send only settings.folders = { - audiobooks.type = "sendonly"; - lost-fotos.type = "sendonly"; - lectures.type = "sendonly"; - }; - folders = { # on encrypted drive # ------------------ oscar_cpap = { @@ -52,6 +47,7 @@ }; lost-fotos = { enable = true; + type = "sendonly"; path = "/syncthing/lost-fotos.ct"; }; music-projects = { @@ -60,10 +56,12 @@ }; audiobooks = { enable = true; + type = "sendonly"; path = "/media/audio-books"; }; lectures = { enable = true; + type = "sendonly"; path = "/media/lectures"; }; };