camelot: add Gemini webserver

This commit is contained in:
Victor Mignot 2025-03-17 22:05:52 +01:00
parent ba85799e38
commit 4b7fdbc644
Signed by: dala
SSH key fingerprint: SHA256:+3O9MhlDc2tJL0n+E+Myr7nL+74DP9AXdIXHmIqZTkY
2 changed files with 13 additions and 0 deletions

View file

@ -13,6 +13,7 @@
./gotosocial.nix
./forgejo.nix
./zfs.nix
./gemini.nix
];
services.nginx = {

View file

@ -0,0 +1,12 @@
{
services.agate = {
enable = true;
hostnames = [
"dalaran.fr"
];
};
networking.firewall.allowedTCPPorts = [
1965
];
}