nixos/syncthing: fixup #226088

This commit is contained in:
Naïm Favier
2023-05-17 16:13:57 +02:00
parent 47de2ab418
commit 40a2df0fb0
2 changed files with 14 additions and 7 deletions

View File

@@ -10,12 +10,17 @@ in {
services.syncthing = {
enable = true;
settings = {
options.crashReportingEnabled = false;
devices.testDevice = {
id = testId;
};
folders.testFolder = {
path = "/tmp/test";
devices = [ "testDevice" ];
versioning = {
type = "simple";
params.keep = "10";
};
};
gui.user = "guiUser";
};