1# Honk {#module-services-honk}
2
3With Honk on NixOS you can quickly configure a complete ActivityPub server with
4minimal setup and support costs.
5
6## Basic usage {#module-services-honk-basic-usage}
7
8A minimal configuration looks like this:
9
10```nix
11{
12 services.honk = {
13 enable = true;
14 host = "0.0.0.0";
15 port = 8080;
16 username = "username";
17 passwordFile = "/etc/honk/password.txt";
18 servername = "honk.example.com";
19 };
20
21 networking.firewall.allowedTCPPorts = [ 8080 ];
22}
23```