no double backslash in syncthing keypath

This commit is contained in:
Haak Saxberg 2022-07-31 22:43:29 -07:00
parent 50a384ce2c
commit 6a87e1a9e4

View file

@ -151,8 +151,8 @@
user = "haak"; user = "haak";
dataDir = "/home/haak/synced"; dataDir = "/home/haak/synced";
configDir = "/home/haak/synced/.config/syncthing"; configDir = "/home/haak/synced/.config/syncthing";
cert = if builtins.pathExists "/home/haak/dotfiles/secrets//syncthing/cert.pem" then "/home/haak/dotfiles/secrets//syncthing/cert.pem" else null; cert = if builtins.pathExists "/home/haak/dotfiles/secrets/syncthing/cert.pem" then "/home/haak/dotfiles/secrets/syncthing/cert.pem" else null;
key = if builtins.pathExists "/home/haak/dotfiles/secrets//syncthing/key.pem" then "/home/haak/dotfiles/secrets//syncthing/key.pem" else null; key = if builtins.pathExists "/home/haak/dotfiles/secrets/syncthing/key.pem" then "/home/haak/dotfiles/secrets/syncthing/key.pem" else null;
}; };
location.provider = "geoclue2"; location.provider = "geoclue2";