9 lines
133 B
Nix
9 lines
133 B
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
services.syncthing = {
|
||
|
enable = true;
|
||
|
tray = true;
|
||
|
};
|
||
|
home.packages = with pkgs; [ syncthing-cli ];
|
||
|
}
|