nixos/home/env/syncthing.nix

9 lines
140 B
Nix

{ pkgs, ... }:
{
services.syncthing = {
enable = true;
tray.enable = true;
};
home.packages = with pkgs; [ syncthing-cli ];
}