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"; };