Merge pull request #8193 from lostdj/patch-1

bittorrentsync: fix storage_path.

Changed files
+2 -2
nixos
modules
services
networking
+2 -2
nixos/modules/services/networking/btsync.nix
···
storagePath = mkOption {
type = types.path;
-
default = "/var/lib/btsync";
-
example = "/var/lib/btsync";
+
default = "/var/lib/btsync/";
+
example = "/var/lib/btsync/";
description = ''
Where to store the bittorrent sync files.
'';