nixos-config/linux/nebula/writefreely.nix
2024-03-08 21:28:35 -08:00

18 lines
323 B
Nix

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