nixos-config/linux/nebula/writefreely.nix

19 lines
337 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 = {
2024-03-13 22:04:42 -07:00
app = {
site_name = domain;
site_description = "Random thoughts";
};
2024-03-08 20:14:20 -08:00
server = {
2024-03-13 22:04:42 -07:00
bind = wildcard;
port = port.writefreely;
};
2024-03-08 20:14:20 -08:00
};
};
}