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