nixos/home/env/syncthing.nix

9 lines
140 B
Nix
Raw Normal View History

2023-05-06 14:00:45 +01:00
{ pkgs, ... }:
{
services.syncthing = {
enable = true;
tray.enable = true;
2023-05-06 14:00:45 +01:00
};
home.packages = with pkgs; [ syncthing-cli ];
}