From 14025517e94ac470f2b64f02965cd560050a6364 Mon Sep 17 00:00:00 2001 From: Krzysztof Nazarewski Date: Tue, 24 Sep 2024 14:44:06 +0200 Subject: [PATCH] feat: syncthing: add cli Signed-off-by: Krzysztof Nazarewski --- modules/services/syncthing/hm.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/services/syncthing/hm.nix b/modules/services/syncthing/hm.nix index c5f6f74d..2aecfacc 100644 --- a/modules/services/syncthing/hm.nix +++ b/modules/services/syncthing/hm.nix @@ -27,5 +27,8 @@ in systemd.user.services.syncthing = { Unit.After = [ "paths.target" ]; }; + home.packages = with pkgs; [ + stc-cli + ]; }; }