diff options
author | Emile <git@emile.space> | 2024-03-09 22:56:01 +0100 |
---|---|---|
committer | Emile <git@emile.space> | 2024-03-09 22:56:01 +0100 |
commit | 55ee036fd7ebed24097c8da1ca8a0b0829264670 (patch) | |
tree | 9c600d75a4f59f8ec253c5caadc1f77b2cecb0da /nix/hosts/corrino/gemini |
big bang
Diffstat (limited to 'nix/hosts/corrino/gemini')
-rw-r--r-- | nix/hosts/corrino/gemini/emile.space.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/nix/hosts/corrino/gemini/emile.space.nix b/nix/hosts/corrino/gemini/emile.space.nix new file mode 100644 index 0000000..f7116ae --- /dev/null +++ b/nix/hosts/corrino/gemini/emile.space.nix @@ -0,0 +1,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 ]; +} |