summaryrefslogtreecommitdiff
path: root/home-manager/syncthing.nix
diff options
context:
space:
mode:
authorJakub Stachurski <j.stachurski@student.utwente.nl>2025-03-29 22:35:21 +0100
committerJakub Stachurski <j.stachurski@student.utwente.nl>2025-03-29 22:36:50 +0100
commit2418424adabca0a1616cca4920221cd67149b65a (patch)
treeb5b237376601cdfbd386ab96be5015fc486147fc /home-manager/syncthing.nix
parented0794d5d65c1e15038c308f0a2751a2bcc5cc84 (diff)
Initial commit (Pre-flakes)
Diffstat (limited to 'home-manager/syncthing.nix')
-rw-r--r--home-manager/syncthing.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/home-manager/syncthing.nix b/home-manager/syncthing.nix
new file mode 100644
index 0000000..f917d86
--- /dev/null
+++ b/home-manager/syncthing.nix
@@ -0,0 +1,11 @@
+{ config, pkgs, ... }:
+{
+ services.syncthing = {
+ enable = true;
+ tray = {
+ enable = true;
+ command = "syncthingtray --wait";
+ };
+ };
+}
+