diff options
| author | Jakub Stachurski <j.stachurski@student.utwente.nl> | 2025-03-29 23:09:38 +0100 |
|---|---|---|
| committer | Jakub Stachurski <j.stachurski@student.utwente.nl> | 2025-03-29 23:09:38 +0100 |
| commit | 2e37bf1533ace5b2d4d50196300133d9e72d2952 (patch) | |
| tree | 0c06f4f03599933bb3d0e31620203287ca67c7c0 /home-manager/modules/services/syncthing.nix | |
| parent | 2418424adabca0a1616cca4920221cd67149b65a (diff) | |
flakes update feat. xfce
Diffstat (limited to 'home-manager/modules/services/syncthing.nix ')
| -rw-r--r-- | home-manager/modules/services/syncthing.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/home-manager/modules/services/syncthing.nix b/home-manager/modules/services/syncthing.nix new file mode 100644 index 0000000..f917d86 --- /dev/null +++ b/home-manager/modules/services/syncthing.nix @@ -0,0 +1,11 @@ +{ config, pkgs, ... }: +{ + services.syncthing = { + enable = true; + tray = { + enable = true; + command = "syncthingtray --wait"; + }; + }; +} + |
