Try writefreely

This commit is contained in:
Invariantspace 2024-03-08 20:14:20 -08:00
parent 05f3435635
commit 30c2919018
7 changed files with 92 additions and 49 deletions

View file

@ -0,0 +1,15 @@
{ config, ... }:
{
services.writefreely = with config.constants; {
enable = true;
host = "writefreely.${domain}";
settings = {
admin.name = userName;
server = {
bind = wildcard;
port = port.writefreely;
};
};
};
}