nixos-config/linux/nebula/writefreely.nix

16 lines
269 B
Nix
Raw Normal View History

2024-03-08 20:14:20 -08:00
{ config, ... }:
{
services.writefreely = with config.constants; {
enable = true;
host = "writefreely.${domain}";
settings = {
admin.name = userName;
server = {
bind = wildcard;
port = port.writefreely;
};
};
};
}