[syncthing] Fixes tray enable option

This commit is contained in:
2025-03-18 12:01:40 -07:00
parent ece6af8e67
commit 75467f0c23
2 changed files with 4 additions and 2 deletions

View File

@@ -2,6 +2,8 @@
{ {
services.syncthing = { services.syncthing = {
enable = true; enable = true;
tray = lib.mkDefault true; tray = {
enable = lib.mkDefault true;
};
}; };
} }

View File

@@ -15,5 +15,5 @@
userEmail = "drew.haven@gmail.com"; userEmail = "drew.haven@gmail.com";
}; };
services.syncthing.tray = false; services.syncthing.tray.enable = false;
} }