nixos-config/linux/nebula/writefreely.nix
2024-03-08 21:02:13 -08:00

12 lines
217 B
Nix

{ config, ... }:
{
services.writefreely = with config.constants; {
enable = true;
host = "writefreely.${domain}";
settings.server = {
bind = wildcard;
port = port.writefreely;
};
};
}