resilio: fix errors by changing paths to strings

This commit is contained in:
Jez Cope 2022-07-26 21:47:47 +01:00
parent 4b5da0e0a6
commit 8ec986b559
1 changed files with 3 additions and 3 deletions

View File

@ -21,15 +21,15 @@ in {
systemd.user.services = let
confFile = settingsFormat.generate "rslsync.conf" {
device_name = capitalise hostName;
storage_path = toString ~/.cache/rslsync;
pid_file = toString ~/.cache/rslsync/rslsync.pid;
storage_path = "~/.cache/rslsync";
pid_file = "~/.cache/rslsync/rslsync.pid";
use_upnp = true;
download_limit = 0;
upload_limit = 0;
directory_root = toString ~/.;
directory_root = "~";
webui.listen = "0.0.0.0:8888";
};