summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorlostdj <lostdj@gmail.com>2014-09-19 18:19:04 +0400
committerlostdj <lostdj@gmail.com>2014-09-19 18:19:04 +0400
commitf02d4ec9ed39694e04aa52937a9f73e217aff7f8 (patch)
tree00864e4469c56d433d1dc18a0e42b74103c1becf /nixos
parent09afbd1f06c54e2e5608bd142e1274e4335f581b (diff)
downloadnixpkgs-f02d4ec9ed39694e04aa52937a9f73e217aff7f8.tar
nixpkgs-f02d4ec9ed39694e04aa52937a9f73e217aff7f8.tar.gz
nixpkgs-f02d4ec9ed39694e04aa52937a9f73e217aff7f8.tar.bz2
nixpkgs-f02d4ec9ed39694e04aa52937a9f73e217aff7f8.tar.lz
nixpkgs-f02d4ec9ed39694e04aa52937a9f73e217aff7f8.tar.xz
nixpkgs-f02d4ec9ed39694e04aa52937a9f73e217aff7f8.tar.zst
nixpkgs-f02d4ec9ed39694e04aa52937a9f73e217aff7f8.zip
bittorrentsync: fix storage_path.
If this path is a symlink, btsync won't be able to read it if it's not ending with "/".
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/networking/btsync.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/btsync.nix b/nixos/modules/services/networking/btsync.nix
index 5d0e17c293e..7ddc9e1045e 100644
--- a/nixos/modules/services/networking/btsync.nix
+++ b/nixos/modules/services/networking/btsync.nix
@@ -57,7 +57,7 @@ let
     ''
       {
         "device_name":     "${cfg.deviceName}",
-        "storage_path":    "/var/lib/btsync",
+        "storage_path":    "/var/lib/btsync/",
         "listening_port":  ${toString cfg.listeningPort},
         "use_gui":         false,