From 6c01d83434eada2b3e85e3961618764cc873479f Mon Sep 17 00:00:00 2001 From: punkfairie Date: Sun, 27 Oct 2024 20:44:30 -0700 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(syncthing):=20Syncthing=20tray?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- home/syncthing/default.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/home/syncthing/default.nix b/home/syncthing/default.nix index b866ac4..733a32e 100644 --- a/home/syncthing/default.nix +++ b/home/syncthing/default.nix @@ -1,7 +1,11 @@ -{...}: { +{pkgs, ...}: { services.syncthing = { enable = true; - tray.enable = true; + tray = { + enable = true; + command = "syncthingtray"; + package = pkgs.syncthingtray-minimal; + }; }; }