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": { "locked": {
"lastModified": 1696940889, "lastModified": 1697323135,
"narHash": "sha256-p2Wic74A1tZpFcld1wSEbFQQbrZ/tPDuLieCnspamQo=", "narHash": "sha256-tlAv11c0NIRTk2IzpFxYknHrveeFXojVyCTAMg749Zg=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "6bba64781e4b7c1f91a733583defbd3e46b49408", "rev": "d4a5076ea8c2c063c45e0165f9f75f69ef583e20",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

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