nixos/home/env/syncthing.nix

9 lines
133 B
Nix

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