nix-config/home/_mixins/services/syncthing-tray.nix
Greg Burd 86706b1fc7 wimpy-ified
inspired by wimpysworld nix-config
2023-09-25 14:05:07 -04:00

8 lines
135 B
Nix

{ pkgs, ... }: {
services.syncthing = {
tray = {
enable = true;
package = pkgs.unstable.syncthingtray;
};
};
}