summary refs log tree commit diff
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2015-06-07 17:53:19 +0200
committerDomen Kožar <domen@dev.si>2015-06-07 17:53:19 +0200
commit46b05f0e0849221ab5d03c81d37736e4718bfcfa (patch)
tree3d5073cb691ae9663dccb8e5232f993d44acf64a
parent389820e798aeb4f149a7844618e4547657cf96a6 (diff)
parent714377f8dc41e505b8039bae5870ce724a29da9a (diff)
downloadnixlib-46b05f0e0849221ab5d03c81d37736e4718bfcfa.tar
nixlib-46b05f0e0849221ab5d03c81d37736e4718bfcfa.tar.gz
nixlib-46b05f0e0849221ab5d03c81d37736e4718bfcfa.tar.bz2
nixlib-46b05f0e0849221ab5d03c81d37736e4718bfcfa.tar.lz
nixlib-46b05f0e0849221ab5d03c81d37736e4718bfcfa.tar.xz
nixlib-46b05f0e0849221ab5d03c81d37736e4718bfcfa.tar.zst
nixlib-46b05f0e0849221ab5d03c81d37736e4718bfcfa.zip
Merge pull request #8193 from lostdj/patch-1
bittorrentsync: fix storage_path.
-rw-r--r--nixos/modules/services/networking/btsync.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/networking/btsync.nix b/nixos/modules/services/networking/btsync.nix
index d0123b79e3f8..bd7a5bcebe68 100644
--- a/nixos/modules/services/networking/btsync.nix
+++ b/nixos/modules/services/networking/btsync.nix
@@ -208,8 +208,8 @@ in
 
       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.
         '';