diff options
author | Leo Famulari <leo@famulari.name> | 2025-02-25 13:05:53 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2025-02-25 13:10:25 -0500 |
commit | 8bc831325a905dbd9015739b58e3a5138d2217da (patch) | |
tree | a704f5efaeca7476ae662d6e88a8db0b38a5d9f6 | |
parent | 5ccae0d1bf16c77466809671c17d410d4521a131 (diff) | |
download | guix-8bc831325a905dbd9015739b58e3a5138d2217da.tar.gz guix-8bc831325a905dbd9015739b58e3a5138d2217da.zip |
services: syncthing: Fix typo in file name.
This is a followup to commit 651f8765b657e35baf85ac74a1f6b09ff71691cb
* gnu/services/syncthing.scm (syncthing-files-service): Fix typo.
Change-Id: I55d1d480d356f41e65b85f8503ceb38c5c1a021b
-rw-r--r-- | gnu/services/syncthing.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/services/syncthing.scm b/gnu/services/syncthing.scm index 46333fcb0f..efafec8f73 100644 --- a/gnu/services/syncthing.scm +++ b/gnu/services/syncthing.scm @@ -539,13 +539,13 @@ ;; When used as a system service, this service might be executed ;; before a user's home even exists, causing it to be owned by root, ;; and the skeletons to never be applied to that user's home. In such - ;; cases, put the config at /var/lib/syncthnig-<user>/config.xml + ;; cases, put the config at /var/lib/syncthing-<user>/config.xml `((,(if home-service? ".config/syncthing/config.xml" (string-append "/var/lib/syncthing-" user "/config.xml")) ,(if (file-like? config-file) config-file - (plain-file "syncthin-config.xml" (serialize-syncthing-config-file + (plain-file "syncthing-config.xml" (serialize-syncthing-config-file config-file))))) '()))) |