feat(syncthing): Syncthing tray

This commit is contained in:
punkfairie 2024-10-27 20:44:30 -07:00
parent 5074f81f60
commit 6c01d83434

View file

@ -1,7 +1,11 @@
{...}: { {pkgs, ...}: {
services.syncthing = { services.syncthing = {
enable = true; enable = true;
tray.enable = true; tray = {
enable = true;
command = "syncthingtray";
package = pkgs.syncthingtray-minimal;
};
}; };
} }