From 7e70b571323f642078099fb43f595dc570d1b669 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Wed, 24 Mar 2021 21:19:48 +0000 Subject: [PATCH] services: transmission: remove trailing slash Otherwise it messes with the UI: Another '/' is inserted --- services/transmission.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/transmission.nix b/services/transmission.nix index 316973d..29e181b 100644 --- a/services/transmission.nix +++ b/services/transmission.nix @@ -29,7 +29,7 @@ in downloadBase = mkOption { type = types.str; - default = "/data/downloads/"; + default = "/data/downloads"; example = "/var/lib/transmission/download"; description = "Download base directory"; };