This commit is contained in:
Daniel Meiburg 2023-10-15 15:59:27 +02:00
parent d5b9264de2
commit f6c2c9084e
Signed by: dm
GPG Key ID: E5827ECFFE0AA4F2
3 changed files with 7 additions and 7 deletions

@ -1 +1 @@
Subproject commit d4e762ceb6dc5eaa4949b2673f3325b98aba174f
Subproject commit ffbac0e7b4a8b3d9e5e059564d79c4337f496c11

View File

@ -7,11 +7,11 @@
]
},
"locked": {
"lastModified": 1696940889,
"narHash": "sha256-p2Wic74A1tZpFcld1wSEbFQQbrZ/tPDuLieCnspamQo=",
"lastModified": 1697323135,
"narHash": "sha256-tlAv11c0NIRTk2IzpFxYknHrveeFXojVyCTAMg749Zg=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "6bba64781e4b7c1f91a733583defbd3e46b49408",
"rev": "d4a5076ea8c2c063c45e0165f9f75f69ef583e20",
"type": "github"
},
"original": {

View File

@ -105,8 +105,8 @@
services.syncthing = {
enable = true;
user = "dm";
dataDir = "/home/dm/documents";
configDir = "/home/dm/documents/.config/syncthing";
dataDir = "/home/dm/Documents";
configDir = "/home/dm/Documents/.config/syncthing";
overrideDevices = true; # overrides any devices added or deleted through the WebUI
overrideFolders = true; # overrides any folders added or deleted through the WebUI
settings = {
@ -115,7 +115,7 @@
};
folders = {
"notes" = { # Name of folder in Syncthing, also the folder ID
path = "/home/dm/documents/notes"; # Which folder to add to Syncthing
path = "/home/dm/Documents/notes"; # Which folder to add to Syncthing
devices = [ "phone" ]; # Which devices to share the folder with
};
};