about summary refs log tree commit diff
path: root/nix/hosts/corrino/gemini/emile.space.nix
blob: f7116ae047a7c00ff24eeecadb44208671a0f6f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ ... }:

{
  services.agate = {
    # TODO: fix link generation in vokobe
    enable = true;
    contentDir = "/var/www/emile.space";
    hostnames = [
      "emile.space"
    ];
    addresses = [
      "0.0.0.0:1965"
    ];
  };
  networking.firewall.allowedTCPPorts = [ 1965 ];
}