diff options
| author | Jakub Stachurski <j.stachurski@student.utwente.nl> | 2025-03-29 22:35:21 +0100 |
|---|---|---|
| committer | Jakub Stachurski <j.stachurski@student.utwente.nl> | 2025-03-29 22:36:50 +0100 |
| commit | 2418424adabca0a1616cca4920221cd67149b65a (patch) | |
| tree | b5b237376601cdfbd386ab96be5015fc486147fc /home-manager/syncthing.nix | |
| parent | ed0794d5d65c1e15038c308f0a2751a2bcc5cc84 (diff) | |
Initial commit (Pre-flakes)
Diffstat (limited to '')
| -rw-r--r-- | home-manager/syncthing.nix | 11 |
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"; + }; + }; +} + |
