From 64d3c9020798635b57b02ea313e95e9eb28356b2 Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Mon, 28 Sep 2020 11:23:10 +0200 Subject: [PATCH] Disable syncthing tray since it doesn't work --- configurations/syncthing.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/configurations/syncthing.nix b/configurations/syncthing.nix index e4466613..14332719 100644 --- a/configurations/syncthing.nix +++ b/configurations/syncthing.nix @@ -6,9 +6,6 @@ { path = "sync"; type = "data"; } ]; home-manager.users.charlotte = { pkgs, ... }: { - services.syncthing = { - enable = true; - tray = true; - }; + services.syncthing.enable = true; }; }