From 75467f0c23b1aaca29c1bccb8060fd794264ffc9 Mon Sep 17 00:00:00 2001 From: Drew Haven Date: Tue, 18 Mar 2025 12:01:40 -0700 Subject: [PATCH] [syncthing] Fixes tray enable option --- home-manager/features/notes.nix | 4 +++- system/hosts/mcp/drew.nix | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/home-manager/features/notes.nix b/home-manager/features/notes.nix index 1980f69..31afceb 100644 --- a/home-manager/features/notes.nix +++ b/home-manager/features/notes.nix @@ -2,6 +2,8 @@ { services.syncthing = { enable = true; - tray = lib.mkDefault true; + tray = { + enable = lib.mkDefault true; + }; }; } diff --git a/system/hosts/mcp/drew.nix b/system/hosts/mcp/drew.nix index e3fe916..02121ce 100644 --- a/system/hosts/mcp/drew.nix +++ b/system/hosts/mcp/drew.nix @@ -15,5 +15,5 @@ userEmail = "drew.haven@gmail.com"; }; - services.syncthing.tray = false; + services.syncthing.tray.enable = false; }