Add synthing service

This commit is contained in:
Leonora Tindall 2024-02-05 11:01:05 -06:00
parent 571096e94c
commit 4dc2898e32
2 changed files with 12 additions and 0 deletions

View File

@ -13,6 +13,7 @@ in
./jq.nix
./tmux.nix
./direnv.nix
./syncthing.nix
./packages.nix
];

11
syncthing.nix Normal file
View File

@ -0,0 +1,11 @@
{ config, pkgs, ...}:
{
services.syncthing = {
enable = true;
tray = {
enable = true;
package = pkgs.qsyncthingtray;
command = "qsyncthingtray";
};
};
}