blob: 77e98df84b4eeedb770dea6b3615ad839d25b38f [file] [log] [blame]
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [ syncthing ];
services.syncthing.enable = true;
services.syncthing.openDefaultPorts = true;
services.syncthing.extraOptions.gui = {
user = "admin";
password = "password";
};
}