nixos/modules/home-manager/syncthing.nix
2024-12-20 23:01:15 -05:00

12 lines
99 B
Nix

{
pkgs,
config,
...
}: {
services = {
syncthing = {
enable = true;
};
};
}