16 lines
334 B
Nix
16 lines
334 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;
|
|
};
|
|
};
|
|
};
|
|
}
|