hackens-org-configurations/hackens/syncthing.nix

10 lines
150 B
Nix
Raw Normal View History

2021-11-02 19:30:28 +01:00
{ pkgs, ... }:
{
services.syncthing = {
enable = true;
user = "hackens";
openDefaultPorts = true;
dataDir = "/home/hackens";
};
}