From f16e74ca51a8eea79d3cf6cb73b4b89ae635d2a3 Mon Sep 17 00:00:00 2001 From: Filippo Berto Date: Sun, 22 Feb 2026 14:43:55 +0100 Subject: [PATCH] rclone-mount: allow other --- hm/rclone-mount.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hm/rclone-mount.nix b/hm/rclone-mount.nix index b34fe79..5fa1d3e 100644 --- a/hm/rclone-mount.nix +++ b/hm/rclone-mount.nix @@ -32,7 +32,7 @@ let cfg = config.rclone-mount; in { Type = "simple"; Environment = [ "PATH=${ lib.makeBinPath [ pkgs.rclone pkgs.coreutils pkgs.fuse ]}:/run/wrappers/bin/:$PATH" ]; ExecStartPre = "${pkgs.coreutils}/bin/mkdir -p ${path}"; - ExecStart = "${pkgs.rclone}/bin/rclone --config '${cfg.configPath}' mount ${name}:/ ${path} -vv --vfs-cache-mode=writes --s3-upload-concurrency 32 --s3-chunk-size 128000"; + ExecStart = "${pkgs.rclone}/bin/rclone --config '${cfg.configPath}' mount ${name}:/ ${path} -vv --allow-other --vfs-cache-mode=writes --s3-upload-concurrency 32 --s3-chunk-size 128000"; Restart = "on-failure"; RestartSec = "30s"; };