From 05dac860fa0b10a172013d97b2bfd51c6777bdd9 Mon Sep 17 00:00:00 2001 From: rotterdam Date: Sat, 11 Feb 2023 09:22:22 -0300 Subject: [PATCH] removed syncthing tray --- users/desktops/common/services.nix | 7 ------- 1 file changed, 7 deletions(-) diff --git a/users/desktops/common/services.nix b/users/desktops/common/services.nix index ee3ad03..34b15bf 100644 --- a/users/desktops/common/services.nix +++ b/users/desktops/common/services.nix @@ -3,12 +3,5 @@ { services = { kdeconnect.enable = true; - syncthing = { - enable = true; - tray = { - enable = true; - package = pkgs.writeShellScriptBin "syncthingtray" "exec ${pkgs.syncthingtray}/bin/syncthingtray --wait" // { pname = "syncthingtray"; }; # Override synctray so it waits for a system tray - }; - }; }; }