From ab1d99fb4da1a71aa508c4601a615c9d742d7f20 Mon Sep 17 00:00:00 2001 From: Filippo Berto Date: Sat, 10 May 2025 15:33:32 +0200 Subject: [PATCH] rclone-mount: more verbose logs --- modules/hm/rclone-mount.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/hm/rclone-mount.nix b/modules/hm/rclone-mount.nix index c630ea3..2840ac3 100644 --- a/modules/hm/rclone-mount.nix +++ b/modules/hm/rclone-mount.nix @@ -31,7 +31,7 @@ let cfg = config.rclone-mount; in { Service = { Type = "simple"; ExecStartPre = "${pkgs.coreutils}/bin/mkdir -p ${path}"; - ExecStart = "${pkgs.rclone}/bin/rclone --config '${cfg.configPath}' mount ${name}:/ ${path} -v --vfs-cache-mode=writes --s3-upload-concurrency 32 --s3-chunk-size 128000"; + ExecStart = "${pkgs.rclone}/bin/rclone --config '${cfg.configPath}' mount ${name}:/ ${path} -vv --vfs-cache-mode=writes --s3-upload-concurrency 32 --s3-chunk-size 128000"; Restart = "on-failure"; RestartSec = "30s"; };