From 33c1744ec0ae506d8f999c4f0f2fd5b8195f5ac6 Mon Sep 17 00:00:00 2001 From: Illia Chub Date: Fri, 17 Dec 2021 18:53:59 +0200 Subject: [PATCH] Escaped rclone argument --- backup/restic.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backup/restic.nix b/backup/restic.nix index c8ea30d..d483259 100644 --- a/backup/restic.nix +++ b/backup/restic.nix @@ -11,7 +11,7 @@ in serviceConfig = { Type = "simple"; User = "restic"; - ExecStart = "${pkgs.restic}/bin/restic -o rclone.args=serve restic --stdio -r rclone:backblaze:${cfg.backblaze.bucket}:/sfbackup --verbose --json backup /var"; + ExecStart = "${pkgs.restic}/bin/restic -o rclone.args="serve restic --stdio" -r rclone:backblaze:${cfg.backblaze.bucket}:/sfbackup --verbose --json backup /var"; }; }; };