12 lines
217 B
Nix
12 lines
217 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
services.writefreely = with config.constants; {
|
|
enable = true;
|
|
host = "writefreely.${domain}";
|
|
settings.server = {
|
|
bind = wildcard;
|
|
port = port.writefreely;
|
|
};
|
|
};
|
|
}
|