diff options
| author | Jakub Stachurski <j.stachurski@student.utwente.nl> | 2025-03-31 11:36:29 +0200 |
|---|---|---|
| committer | Jakub Stachurski <j.stachurski@student.utwente.nl> | 2025-03-31 11:36:29 +0200 |
| commit | 17e939a313da880c2b7af9c8296eb12dcc9ae80f (patch) | |
| tree | 38784b3d0f0fdbaac9c002ea44d09e5a5794a7bf /home-manager/modules/services/syncthing.nix | |
| parent | b270d32457c2a4f499a17efebac508bac401924b (diff) | |
Readd vim
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"; + }; + }; +} + |
