···8484 alos create normal users and change passwords. Available as
8585 [services.userborn](#opt-services.userborn.enable)
86868787+- [Hatsu](https://github.com/importantimport/hatsu), a self-hosted bridge that interacts with Fediverse on behalf of your static site. Available as [services.hatsu](options.html#opt-services.hatsu).
8888+8789- [Flood](https://flood.js.org/), a beautiful WebUI for various torrent clients. Available as [services.flood](options.html#opt-services.flood).
88908991- [Firefly-iii Data Importer](https://github.com/firefly-iii/data-importer), a data importer for Firefly-III. Available as [services.firefly-iii-data-importer](options.html#opt-services.firefly-iii-data-importer)
···11+# Hatsu {#module-services-hatsu}
22+33+[Hatsu](https://github.com/importantimport/hatsu) is an fully-automated ActivityPub bridge for static sites.
44+55+## Quickstart {#module-services-hatsu-quickstart}
66+77+the minimum configuration to start hatsu server would look like this:
88+99+```nix
1010+{
1111+ services.hatsu = {
1212+ enable = true;
1313+ settings = {
1414+ HATSU_DOMAIN = "hatsu.local";
1515+ HATSU_PRIMARY_ACCOUNT = "example.com";
1616+ };
1717+ };
1818+}
1919+```
2020+2121+this will start the hatsu server on port 3939 and save the database in `/var/lib/hatsu/hatsu.sqlite3`.
2222+2323+Please refer to the [Hatsu Documentation](https://hatsu.cli.rs) for additional configuration options.